java.util.vector.copyInto()方法用於將所有組件從此向量複製到另一個數組,並具有足夠的空間來容納該向量的所有組件。要注意的是,元素的索引保持不變。數組中存在的元素被向量的元素替換。
用法:
Vector.copyInto(Object array[])
參數:參數array []是向量類型。這是向量元素要複製到的數組。
返回值:該方法為void類型,不返回任何值。
異常:如果數組為NULL,則該方法引發NullPointerException。
以下示例程序旨在說明Java.util.Vector.copyInto()方法:
示例1:
// Java code to illustrate copyInto()
import java.util.*;
public class VectorDemo {
public static void main(String args[])
{
// Creating an empty Vector
Vector<String> vec_tor = new Vector<String>();
// 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
示例2:
// Java code to illustrate copyInto()
import java.util.*;
public class VectorDemo {
public static void main(String args[])
{
// Creating an empty Vector
Vector<Integer> vec_tor = new Vector<Integer>();
// 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
相關用法
- Java Stack copyInto()用法及代碼示例
- Java Vector add()用法及代碼示例
- Java Vector get()用法及代碼示例
- Java Vector set()用法及代碼示例
- Java Vector contains()用法及代碼示例
- Java Vector ensureCapacity()用法及代碼示例
- Java Vector addElement()用法及代碼示例
- Java Vector setSize()用法及代碼示例
- Java Vector toString()用法及代碼示例
- Java Vector removeRange()用法及代碼示例
- Java Vector removeElement()用法及代碼示例
- Java Vector subList()用法及代碼示例
- Java Vector removeIf()用法及代碼示例
- Java Vector trimToSize()用法及代碼示例
- Java Vector elements()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Vector copyInto() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。