
- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java Vector size() Method
Description
The Java Vector size() method is used to return the number of components in this vector.
Declaration
Following is the declaration for java.util.Vector.size() method
public int size()
Parameters
NA
Return Value
The method call returns the number of components in this vector.
Exception
NA
Getting Size of a Vector of Integer Example
The following example shows the usage of Java Vector size() method. We're adding couple of Integers to the Vector object using add() method calls per element. Size of the vector is printed using size() method. And using remove(index) method, we're removing one element and size of the vector is again printed.
package com.tutorialspoint; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty array list Vector<Integer> vector = new Vector<>(); // use add() method to add elements in the vector vector.add(20); vector.add(30); vector.add(20); vector.add(30); vector.add(15); vector.add(22); vector.add(11); // let us print the size of the vector again System.out.println("Vector Size = " + vector.size()); // remove an element at index 2 vector.remove(2); // let us print the size of the vector again System.out.println("Vector Size = " + vector.size()); } }
Output
Let us compile and run the above program, this will produce the following result −
Vector Size = 7 Vector Size = 6
Setting Size of a Vector of String Example
The following example shows the usage of Java Vector size() method. We're adding couple of Strings to the Vector object using add() method calls per element. Size of the vector is printed using size() method. And using remove(index) method, we're removing one element and size of the vector is again printed.
package com.tutorialspoint; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty array list Vector<String> vector = new Vector<>(); // use add() method to add elements in the vector vector.add("Welcome"); vector.add("To"); vector.add("Tutorialspoint"); // let us print the size of the vector again System.out.println("Vector Size = " + vector.size()); // remove an element at index 2 vector.remove(2); // let us print the size of the vector again System.out.println("Vector Size = " + vector.size()); } }
Output
Let us compile and run the above program, this will produce the following result −
Vector Size = 3 Vector Size = 2
Setting Size of a Vector of Object Example
The following example shows the usage of Java Vector size() method. We're adding couple of Student objects to the Vector object using add() method calls per element. Size of the vector is printed using size() method. And using remove(index) method, we're removing one element and size of the vector is again printed.
package com.tutorialspoint; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty vector Vector<Student> vector = new Vector<>(); // use add() method to add elements in the vector vector.add(new Student(1, "Julie")); vector.add(new Student(2, "Robert")); vector.add(new Student(3, "Adam")); // let us print the size of the vector again System.out.println("Vector Size = " + vector.size()); // remove an element at index 2 vector.remove(2); // let us print the size of the vector again System.out.println("Vector Size = " + vector.size()); } } class Student { int rollNo; String name; Student(int rollNo, String name){ this.rollNo = rollNo; this.name = name; } @Override public String toString() { return "[ " + this.rollNo + ", " + this.name + " ]"; } }
Output
Let us compile and run the above program, this will produce the following result −
Vector Size = 3 Vector Size = 2