Javatpoint Logo
Javatpoint Logo

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, JavaTpoint]
Current capacity of Vector after modification: 6

Example 3:

Test it Now

Output:

Default capacity of Vector: 10

Next TopicJava Vector





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA