Google News
logo
Java - Interview Questions
What is the purpose of toString() method in java ?
The toString() method returns the string representation of any object. If you print any object, java compiler internally invokes the toString() method on the object. 

So overriding the toString() method, returns the desired output, it can be the state of an object etc. depends on your implementation.
Advertisement