Home » Java Vector capacity() Method with Examples

Java Vector capacity() Method with Examples

by Online Tutorials Library

Java Vector capacity() Method

The capacity() method of Java Vector class is used to get the current capacity of the vector which is in use.

Syntax:

Following is the declaration of capacity() method:

Parameter:

This method does not accept any parameter.

Returns:

This method returns the current capacity of the vector which is in use.

Exceptions:

NA

Compatibility Version:

Java 1.2 and above

Example 1:

Test it Now

Output:

Current capacity of Vector is: 5  

Example 2:

Test it Now

Output:

Elements of Vector are: [A, B, C]  Current capacity of Vector: 3  Elements after addition: [A, B, C, TutorAspire ]  Current capacity of Vector after modification: 6  

Example 3:

Test it Now

Output:

Default capacity of Vector: 10  

Next TopicJava Vector

You may also like