System::Collections::Generic::SortedSet 类

SortedSet class

SortedSet 类的前向声明。

template<typename T>class SortedSet : public System::Collections::Generic::BaseSet<T, std::set<T, ComparerAdapter<T>, System::Details::CollectionHelpers::ContainerPointerMode<T>::allocator_type>>

方法

方法描述
get_Max() const获取 SortedSet 中的最大值。
SortedSet()RTTI 信息。
SortedSet(int)创建具有指定容量的空集合。
SortedSet(const SharedPtr<IComparer<T>>&)创建使用指定相等比较器的空集合。
SortedSet(const SharedPtr<IEnumerable<T>>&)基于可枚举值创建 SortedSet

Typedefs

类型定义描述
BaseTypeVase 类型。
ThisPtr指针类型。
ThisType自身类型。

备注

实现有序对象集合。此类的对象只能使用 System::MakeObject() 函数分配。切勿在栈上或使用 operator new 创建此类型的实例,因为会导致运行时错误和/或断言故障。始终将此类包装到 System::SmartPtr 指针中,并使用该指针将其作为参数传递给函数。

另见