87
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:
Output:
Current capacity of Vector is: 5
Example 2:
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:
Output:
Default capacity of Vector: 10
Next TopicJava Vector