java.util.Vector.copyInto()方法实例
copyInto(Object[] anArray) 方法用于本矢量的要素复制到指定的数组。在索引k此向量中的项目复制到阵列中的组件k中。这意味着元件的位置是在两个矢量和阵列相同。该数组必须足够大,以容纳这个载体,否则抛出IndexOutOfBoundsException的所有对象。
声明
以下是java.util.Vector.copyInto()方法的声明
public void copyInto(Object[] anArray)
参数
-
anArray--这是数组,该组件被复制。
返回值
返回类型为void,因此不会返回任何东西。
异常
-
NullPointerException--如果给定的数组为null。
例子
下面的例子显示java.util.Vector.copyInto()方法的使用。
package com.yiibai; import java.util.Vector; public class VectorDemo { public static void main(String[] args) { // create an empty Vector vec with an initial capacity of 4 Vector<Integer> vec = new Vector<Integer>(4); Integer anArray[]=new Integer[4]; anArray[0] = 100; anArray[1] = 100; anArray[2] = 100; anArray[3] = 100; // use add() method to add elements in the vector vec.add(4); vec.add(3); vec.add(2); vec.add(1); // numbers in the array before copy System.out.println("Numbers in the array before copy"); for (Integer number : anArray) { System.out.println("Number = " + number); } // copy into the array vec.copyInto(anArray); // numbers in the array after copy System.out.println("Numbers in the array after copy"); for (Integer number : anArray) { System.out.println("Number = " + number); } } }
现在编译和运行上面的代码示例,将产生以下结果。
Numbers in the array before copy Number = 100 Number = 100 Number = 100 Number = 100 Numbers in the array after copy Number = 4 Number = 3 Number = 2 Number = 1