new Vector(Collection c) : Vector « java.util « Java by API






new Vector(Collection c)

  
import java.util.Arrays;
import java.util.Vector;

public class Main {
  public static void main(String args[]) {
    Integer[] array = {1,2,3,4,5};
    Vector<Integer> v = new Vector<Integer>(Arrays.asList(array));
    
    System.out.println(v);
  }
}

   
    
  








Related examples in the same category

1.Vector: addElement(E e)
2.Vector: add(T e)
3.Vector: clear()
4.Vector: contains(Object obj)
5.Vector: containsAll(Collection c)
6.Vector: copyInto(Object[] anArray)
7.Vector: capacity()
8.Vector: elementAt(int index)
9.Vector: elements()
10.Vector: ensureCapacity(int minCapacity)
11.Vector: equals(Object o)
12.Vector: firstElement()
13.Vector: get(int index)
14.Vector: hashCode()
15.Vector: indexOf(Object o)
16.Vector: indexOf(Object o, int index)
17.Vector: insertElementAt(E obj, int index)
18.Vector: isEmpty()
19.Vector: iterator()
20.Vector: lastElement()
21.Vector: lastIndexOf(Object o)
22.Vector: lastIndexOf(Object o, int index)
23.Vector: listIterator()
24.Vector: remove(int index)
25.Vector: remove(Object o)
26.Vector: removeAllElements()
27.Vector: removeAll(Collection c)
28.Vector: removeElementAt(int index)
29.Vector: removeElement(Object obj)
30.Vector: retainAll(Collection c)
31.Vector: set(int index, Object element)
32.Vector: setSize(int newSize)
33.Vector: size()
34.Vector: subList(int fromIndex, int toIndex)
35.Vector: toArray()
36.Vector: toArray(T[] a)
37.Save Vector to File