當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ArrayList clone()用法及代碼示例


Java.util.ArrayList.clone()方法用於創建所提及數組列表的淺拷貝。它隻是創建列表的副本。

用法:

ArrayList.clone()

參數:此方法不帶任何參數。


返回值:此函數返回“鏈接列表”實例的副本。

以下示例程序旨在說明Java.util.ArrayList.clone()方法:

示例1:

// Java code to illustrate clone() method 
  
import java.io.*; 
import java.util.ArrayList; 
  
public class ArrayListDemo { 
  
    public static void main(String args[]) 
    { 
  
        // Creating an empty ArrayList 
        ArrayList<String> list 
            = new ArrayList<String>(); 
  
        // Use add() method 
        // to add elements in the list 
        list.add("Geeks"); 
        list.add("for"); 
        list.add("Geeks"); 
        list.add("10"); 
        list.add("20"); 
  
        // Displaying the list 
        System.out.println("First ArrayList: "
                           + list); 
  
        // Creating another linked list and copying 
        ArrayList sec_list = new ArrayList(); 
        sec_list = (ArrayList)list.clone(); 
  
        // Displaying the other linked list 
        System.out.println("Second ArrayList is: "
                           + sec_list); 
    } 
}
輸出:
First ArrayList: [Geeks, for, Geeks, 10, 20]
Second ArrayList is: [Geeks, for, Geeks, 10, 20]

示例2:

// Java code to illustrate clone() method 
  
import java.io.*; 
import java.util.ArrayList; 
  
public class ArrayListDemo { 
  
    public static void main(String args[]) 
    { 
  
        // Creating an empty ArrayList 
        ArrayList<Integer> list 
            = new ArrayList<Integer>(); 
  
        // Use add() method 
        // to add elements in the list 
        list.add(10); 
        list.add(20); 
        list.add(30); 
        list.add(40); 
        list.add(50); 
  
        // Displaying the list 
        System.out.println("First ArrayList: "
                           + list); 
  
        // Creating another linked list and copying 
        ArrayList sec_list = new ArrayList(); 
        sec_list = (ArrayList)list.clone(); 
  
        // Displaying the other linked list 
        System.out.println("Second ArrayList is: "
                           + sec_list); 
    } 
}
輸出:
First ArrayList: [10, 20, 30, 40, 50]
Second ArrayList is: [10, 20, 30, 40, 50]


相關用法


注:本文由純淨天空篩選整理自_Gaurav_Tiwari大神的英文原創作品 ArrayList clone() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。