Home » Java Vector toString() Method with Examples

Java Vector toString() Method with Examples

by Online Tutorials Library

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

Test it Now

Output:

Contents of a vector are: [One, Two, Three, Four, Five]  

Example 2

Test it Now

Output:

An elements in vector are :-   Number = 1  Number = 2  Number = 3  Number = 4  Number = 5  

You may also like