要清空 Java 中的 HashSet,可以使用 clear() 方法。但是,LinkedHashSet 是 HashSet 的一个子类,它维护了一个双向链表来记录元素的插入顺序。因此,要清空 LinkedHashSet,您同样可以使用 clear() 方法。以下是一个示例:
import java.util.LinkedHashSet; public class Main { public static void main(String[] args) { LinkedHashSetlinkedHashSet = new LinkedHashSet<>(); // 向 LinkedHashSet 中添加元素 linkedHashSet.add("A"); linkedHashSet.add("B"); linkedHashSet.add("C"); System.out.println("LinkedHashSet before clearing: " + linkedHashSet); // 清空 LinkedHashSet linkedHashSet.clear(); System.out.println("LinkedHashSet after clearing: " + linkedHashSet); } }
输出:
LinkedHashSet before clearing: [A, B, C] LinkedHashSet after clearing: []
如您所见,使用 clear() 方法后,LinkedHashSet 中的所有数据都被清空了。