Wednesday, 25 January 2017

Vector : CopyInto


import java.util.Vector;

public class CopyInto {

    public static void main(String[] args) {
        // TODO Auto-generated method stub


        Vector<String> v = new Vector<>();
        v.add("v1");
        v.add("v2");
        v.add("v3");
        v.add("v4");
       
        System.out.println("Full List : "+v);
       
        String[] arr1 = new String[v.size()];
        v.copyInto(arr1);
        for(String s : arr1)
        { System.out.print(s+", "); }
    }
}

No comments:

Post a Comment