I would like to obtain the string text of the elements stored in a list, say List<Car>. Would the toArray() and the toString() methods be the best options?
|
|
|||||||||||
|
|
Yes, but doing it manually gives you more control:
If you haven't overridden the |
||||
|
|
|
There is a |
||||
|
Providing you don't object to the string output following the convention:
... you can simply call the However, if you wish to obtain each element as an individual |
|||||
|
|
Another idea is to use the Apache Commons Lang to write the following code:
The interest is that you also can provide a separator, for example:
|
|||
|
|
Note: The above will display the meaningful message only when you have overridden the toString() method of Car class. e.g
The toString() method should be overridden to return meaningful information about the object in the string form. In your case, I think the meaningful info would be all the details of the car. So overriding toString() method is best approach instead of using getCarName() or similar methods. |
||||
|
|