111
Java Vector toString() Method
The toString() method of Java Vector class is used to get a string representation of the vector. It contains the string representation of each element.
Syntax
Following is the declaration of toString() method:
Parameter
This method does not accept any parameter.
Return
The toString() method returns a string representation of the given collection.
Exceptions
NA
Compatibility Version
Java 1.2 and above
Example 1
Output:
Contents of a vector are: [One, Two, Three, Four, Five]
Example 2
Output:
An elements in vector are :- Number = 1 Number = 2 Number = 3 Number = 4 Number = 5
Next TopicVector trimToSize()