📜  Java中的向量copyInto()方法

📅  最后修改于: 2022-05-13 01:55:27.044000             🧑  作者: Mango

Java中的向量copyInto()方法

Java.util.vector.copyInto()方法用于将所有组件从该向量复制到另一个数组,有足够的空间容纳向量的所有组件。需要注意的是,元素的索引保持不变。数组中的元素被向量的元素替换。

句法:

Vector.copyInto(Object array[])

参数:参数array[]是vector的类型。这是要复制向量元素的数组。

返回值:该方法为void类型,不返回任何值。

异常:如果数组为 NULL,该方法将抛出NullPointerException

下面的程序说明了Java.util.Vector.copyInto() 方法:

方案一:

// Java code to illustrate copyInto()
import java.util.*;
  
public class VectorDemo {
    public static void main(String args[])
    {
        // Creating an empty Vector
        Vector vec_tor = new Vector();
  
        // Use add() method to add elements into the Vector
        vec_tor.add("Welcome");
        vec_tor.add("To");
        vec_tor.add("Geeks");
        vec_tor.add("4");
        vec_tor.add("Geeks");
  
        // Displaying the Vector
        System.out.println("Vector: " + vec_tor);
  
        // Creating an array
        String arr[] = new String[6];
  
        arr[0] = "Hello";
        arr[1] = "World";
  
        // Displaying the initial array
        System.out.println("The initial array is: ");
        for (String str : arr)
            System.out.println(str);
  
        // Copying
        vec_tor.copyInto(arr);
  
        // The final array
        System.out.println("The final array is: ");
        for (String str : arr)
            System.out.println(str);
    }
}
输出:
Vector: [Welcome, To, Geeks, 4, Geeks]
The initial array is: 
Hello
World
null
null
null
null
The final array is: 
Welcome
To
Geeks
4
Geeks
null

方案二:

// Java code to illustrate copyInto()
import java.util.*;
  
public class VectorDemo {
    public static void main(String args[])
    {
        // Creating an empty Vector
        Vector vec_tor = new Vector();
  
        // Use add() method to add elements into the Vector
        vec_tor.add(10);
        vec_tor.add(20);
        vec_tor.add(30);
        vec_tor.add(40);
        vec_tor.add(50);
  
        // Displaying the Vector
        System.out.println("Vector: " + vec_tor);
  
        // Creating an array
        Integer arr[] = new Integer[6];
  
        arr[0] = 50;
        arr[1] = 60;
        arr[2] = 70;
        arr[3] = 80;
        arr[4] = 90;
  
        // Displaying the initial array
        System.out.println("The initial array is: ");
        for (Integer str : arr)
            System.out.println(str);
  
        // Copying
        vec_tor.copyInto(arr);
  
        // The final array
        System.out.println("The final array is: ");
        for (Integer str : arr)
            System.out.println(str);
    }
}
输出:
Vector: [10, 20, 30, 40, 50]
The initial array is: 
50
60
70
80
90
null
The final array is: 
10
20
30
40
50
null