Can anybody explain to me the concept of the toString() method? How is it used, and what is its purpose?
toString() method define in the Object class this method is in java when get data and print data. this methodcall by default. the purpose of this method convert primitive data into object data or String data.
|
|
|||||||
|
|
From the Object.toString() docs:
Example:
|
||||
|
|
|
Use of the String toString: whenever you require to explore the constructor called value in the String form, you can simply use String toString... for an example... package pack1;
... copy this program into your eclipse, and run it... you will get the ideas about String toString... |
||||
|
|
|
It may optionally have uses within the context of an application but far more often it is used for debugging purposes. For example, when you hit a breakpoint in an IDE, it's far easier to read a meaningful There is no set requirement for what a Relying on particular output from a |
|||
|
|
|
The Overriding the method is always a good idea, especially when it comes to debugging, because debuggers often show objects by the result of the
|
|||
|
|
|
Whenever you access an Object (not being a String) in a String context then the toString() is called under the covers by the compiler. This is why
works, and by overriding the standard toString() from Object in your own classes, you can make your objects useful in String contexts too. (and consider it a black box! Never, ever use the contents for anything else than presenting to a human) |
|||
|
|
|
Apart from what cletus answered with regards to debugging, it is used whenever you output an object, like when you use
or
|
|||
|
|
|
The main purpose of toString is to generate a String representation of an object, means the return value is always a String. In most cases this simply is the object's class and package name, but on some cases like StringBuilder you will got actually a String-text. |
|||
|
|
|
JVM uses a string representation of an object when it is being contactenated using plus sign (+) or when it being used in System.out.println() method. You can get more details from my blog @ http://www.javaservletsjspweb.in/2012/08/java-tostring-method-customizing-it-for.html |
|||
|
|
