Right now the default toString() method displays the internal identifier for the object.
How do I make the toString() method display object variables instead?
thanks!
|
|
You need to override For example:
In the above example, you would see the following:
|
|||
|
|
|
you need to override the toString method on your class. In it you return a String that you will construct based on the class properties. So if you class was
you would add
thats just a basic example. In real code I would use String.format() method, or possibly the apache StringBuilder tool, which will automatically generate a String for any object. |
|||
|
|
|
||||
|
|
|
Inherit the class and override its toString() method to display whatever you want. |
|||
|
|