Click here to watch in Youtube :
https://www.youtube.com/watch?v=J6YIEqRCI1M&list=UUhwKlOVR041tngjerWxVccw
VectorExample.java
import java.util.Vector; /* * Example of copyInto(Object[] anArray) method. */ public class VectorExample { public static void main( String[] args ) { Vector<Integer> vector = new Vector<Integer>(); vector.add(20); vector.add(30); vector.add(40); vector.add(50); System.out.println("vector : " + vector + "\n"); Integer[] integerArray = new Integer[vector.size()]; /* * Copies the components of this vector into the specified array */ vector.copyInto(integerArray); for( Integer value : integerArray ) { System.out.println(value); } } }
vector : [20, 30, 40, 50] 20 30 40 50
https://sites.google.com/site/javaee4321/java-collections/VectorDemoCopyInto.zip?attredirects=0&d=1
See also:
No comments:
Post a Comment