C# 中的 HashSet 类是一个无序的、不包含重复元素的集合。以下是一些常用的 HashSet 操作方法:
- Add(T item):向 HashSet 集合中添加一个元素。如果该元素已存在,则不会进行任何操作。
- Remove(T item):从 HashSet 集合中移除一个元素。如果元素不存在,则不会进行任何操作。
- Contains(T item):检查 HashSet 集合中是否包含指定的元素。如果包含,则返回 true,否则返回 false。
- Clear():清空 HashSet 集合中的所有元素。
- Count:获取 HashSet 集合中的元素数量。
- CopyTo(T[] array, int arrayIndex):将 HashSet 集合中的元素复制到指定的数组中。
- ToArray():将 HashSet 集合中的元素复制到一个新数组中并返回该数组。
- UnionWith(IEnumerable other):将另一个集合中的所有元素添加到 HashSet 集合中。
- IntersectWith(IEnumerable other):从 HashSet 集合中移除与另一个集合中不包含的元素。
- ExceptWith(IEnumerable other):从 HashSet 集合中移除与另一个集合中包含的元素。
- SymmetricExceptWith(IEnumerable other):从 HashSet 集合中移除与另一个集合中既包含又包含的元素。
- IsSubsetOf(IEnumerable other):检查 HashSet 集合是否是另一个集合的子集。
- IsSupersetOf(IEnumerable other):检查 HashSet 集合是否是另一个集合的超集。
- Overlaps(IEnumerable other):检查 HashSet 集合是否与另一个集合有重叠的元素。
- SetEquals(IEnumerable other):检查 HashSet 集合是否与另一个集合相等。
这些方法提供了对 HashSet 集合进行基本操作的途径。在实际编程中,可以根据需要选择合适的方法来操作 HashSet 集合。