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]
相关用法
- Java HashSet contains()用法及代码示例
- Java HashSet add()用法及代码示例
- Java EnumMap clone()用法及代码示例
- Java TreeSet clone()用法及代码示例
- Java CopyOnWriteArrayList clone()用法及代码示例
- Java Stack clone()用法及代码示例
- Java GregorianCalendar clone()用法及代码示例
- Java ConcurrentSkipListSet clone()用法及代码示例
- Java DecimalFormat clone()用法及代码示例
- Java LinkedHashSet clone()用法及代码示例
- Java LinkedList clone()用法及代码示例
- Java HashMap clone()用法及代码示例
- Java ArrayDeque clone()用法及代码示例
- Java RuleBasedCollator clone()用法及代码示例
注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 HashSet clone() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。