Метод Vector capacity () в Java
Метод Java.util.Vector.capacity () в Java используется для получения емкости вектора или длины массива, присутствующего в векторе.
Синтаксис:
Vector.capacity ()
Параметры: метод не принимает никаких параметров.
Возвращаемое значение: метод возвращает емкость или длину внутреннего массива данных, присутствующего в векторе, который является целочисленным значением.
Ниже программы иллюстрируют метод Java.util.Vector.capacity ():
Program 1: Vector with string elements.
// Java code to illustrate capacity() import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<String> vec_tor = new Vector<String>(); // Use add() method to add elements into the Vector vec_tor.add( "Welcome" ); vec_tor.add( "To" ); vec_tor.add( "Geeks" ); vec_tor.add( "4" ); vec_tor.add( "Geeks" ); // Displaying the Vector System.out.println( "Vector: " + vec_tor); // Displaying the capacity of Vector System.out.println( "The capacity is: " + vec_tor.capacity()); } } |
Vector: [Welcome, To, Geeks, 4, Geeks] The capacity is: 10
Program 2: Vector with Integer elements.
// Java code to illustrate capacity() import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<Integer> vec_tor = new Vector<Integer>(); // Use add() method to add elements into the Vector vec_tor.add( 10 ); vec_tor.add( 15 ); vec_tor.add( 30 ); vec_tor.add( 20 ); vec_tor.add( 5 ); // Displaying the Vector System.out.println( "Vector: " + vec_tor); // Displaying the capacity of Vector System.out.println( "The capacity is: " + vec_tor.capacity()); } } |
Vector: [10, 15, 30, 20, 5] The capacity is: 10
Вниманию читателя! Не переставай учиться сейчас. Ознакомьтесь со всеми важными концепциями Java Foundation и коллекций с помощью курса "Основы Java и Java Collections" по доступной для студентов цене и будьте готовы к работе в отрасли. Чтобы завершить подготовку от изучения языка к DS Algo и многому другому, см. Полный курс подготовки к собеседованию .