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


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


Java.util.HashSet.clone()方法用於返回所提及哈希集的淺拷貝。它隻是創建集合的副本。

用法:

Hash_Set.clone()

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


返回值:該方法僅返回HashSet的副本。

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

// Java code to illustrate clone() 
import java.io.*; 
import java.util.HashSet; 
  
public class Hash_Set_Demo { 
    public static void main(String args[]) 
    { 
        // Creating an empty HashSet 
        HashSet<String> set = new HashSet<String>(); 
  
        // Use add() method to add elements into the Set 
        set.add("Welcome"); 
        set.add("To"); 
        set.add("Geeks"); 
        set.add("4"); 
        set.add("Geeks"); 
  
        // Displaying the HashSet 
        System.out.println("HashSet: " + set); 
  
        // Creating a new cloned set 
        HashSet cloned_set = new HashSet(); 
  
        // Cloning the set using clone() method 
        cloned_set = (HashSet)set.clone(); 
  
        // Displaying the new Set after Cloning; 
        System.out.println("The new set: " + cloned_set); 
    } 
}
輸出:
HashSet: [4, Geeks, Welcome, To]
The new set: [Geeks, Welcome, To, 4]


相關用法


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