The HashSet class implements the ICollection, IEnumerable, IReadOnlyCollection, ISet, IEnumerable, IDeserializationCallback, and ISerializable interfaces.
在 HashSet 中,没有定义元素的顺序。 您不能对 HashSet 的元素进行排序。
在 HashSet 中,元素必须是唯一的。在 HashSet 中,不允许有重复的元素。
提供了许多数学集合运算,例如交集、并集和差集。
HashSet 是一个动态集合,意味着当添加新元素时,HashSet 的大小会自动增加。
在 HashSet 中,只能存储相同类型的元素。
The SortedSet class implements the ICollection, IEnumerable, IReadOnlyCollection, ISet, IEnumerable, IDeserializationCallback, and ISerializable interfaces.
在 SortedSet 中,元素必须是唯一的。
在 SortedSet 中,元素的顺序是升序的。
如果您必须存储唯一元素并保持升序,则通常在我们要使用 SortedSet 类时使用它。
在 SortedSet 中,用户只能存储相同类型的元素。