开发者

when to use toString() method

This may sound very basic... can someone please explain the use of the toString() method and when to effectively use this?

Have done a search on google but could not find any good resourc开发者_C百科e.


In most languages, toString or the equivalent method just guarantees that an object can be represented textually.

This is especially useful for logging, debugging, or any other circumstance where you need to be able to render any and every object you encounter as a string.

Objects often implement custom toString behavior so that the method actually tells you something about the object instance. For example, a Person class might override it to return "Last name, First name" while a Date class will show the date formatted according to some default setting (such as the current user interface culture).


There are several situations in which one would wish to override the toString method of a class (most of which are already mentioned in the existing answers), but one of the most common situations in which I have needed to explicitly call toString on an object is when using StringBuilder to construct a String.

public String createString(final String str) {
  final StringBuilder sb = new StringBuilder(str);
  sb.append("foo");
  sb.append("bar");
  return sb.toString();
}


  1. You want to display an object and don't want to check if it is null before.
  2. You want to concat Strings and not thinking about a special attribute, just provide a default one to the programmer.

Thus:

out.println("You are " + user);

will display "You are null" or "You are James" if user is null or toString displays "James" for this (existent) instance.


Assuming .NET or Java:

In general, you should overload ToString() when you want a textual representation of your class (assuming it makes sense for your class).


You can use toString() on an class by overriding it to provide some meaningful text representation of your object.

For example you may override toString() on a Person class to return the first and last name.


To string is should be used when you have a need to change a data type to a string. For built in types like int and such there string representations are what you expect. ie

  int i = 5;
  string s = i.ToString(); //s now equals "5" 

Gives you the character string "5" for most complex types and all user created types you need to overload the tostring method or you will only get the name of the class. To string allows you to use the complex formating build into .net with your own objects. you can provide complex formatters like the datetime class does to give flexibility in using your own types.


toString() can be used to avoid the hexadecimal address, so to overcome this problem you need to override toString() then you will get original text format of data.


When you print reference variable then following task will happen.

  • if reference variable contains null then null value will be displayed.
  • if reference variable contains address of an object then toString() Method will be called by the JVM automatically.

By default toString() of Object.class will print:

ClassName@HexadecimalOfHashCode

You can override this method in your class to display some meaningful String. Usually toString() method is used to print contents of an object.This method is already overridden in many java built-in class like String,StringBuffer,integer etc.


It used when we have to display the field values which we initialize through constructor and what to display without using any getter.

    import Test.Date;
public class Employ {

private String firstname;
private String lastname;
private Date DOB;
private Date DOH;
public Employ(String name,String lastname,Date DOB,Date DOH)
{
    this.firstname=name;
    this.lastname=lastname;
    this.DOB=DOB;
    this.DOH=DOH;

}

    public  String toString(){

    return String.format("%s %s Birthday %s Hired %s",firstname,lastname,DOB,DOH);      
        }
public static void main (String args[])
{
    Date dob= new Date(12,3,1992);
    Date doh= new Date(10,6,2005);

    Employ em= new Employ("BOB", "Wrigh", dob,doh);

    System.out.println(em);

}

}

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜