cppreference.com
创建帐户
登录
命名空间
页面
讨论
变体
视图
视图
编辑
历史
操作
std::set<Key,Compare,Allocator>::
~set
来自 cppreference.com
<
cpp
|
container
|
set
[编辑模板]
C++
编译器支持
独立和托管
语言
标准库
标准库头文件
命名需求
功能测试宏
(C++20)
语言支持库
概念库
(C++20)
元编程库
(C++11)
诊断库
通用实用程序库
字符串库
容器库
迭代器库
范围库
(C++20)
算法库
数值库
本地化库
输入/输出库
文件系统库
(C++17)
正则表达式库
(C++11)
并发支持库
(C++11)
执行支持库
(C++26)
技术规范
符号索引
外部库
[编辑]
容器库
序列
数组
(C++11)
向量
vector
<bool>
inplace_vector
(C++26)
双端队列
正向链表
(C++11)
链表
关联
集合
多重集合
映射
多重映射
无序关联
无序集合
(C++11)
无序多重集合
(C++11)
无序映射
(C++11)
无序多重映射
(C++11)
适配器
堆栈
队列
优先队列
flat_set
(C++23)
flat_multiset
(C++23)
flat_map
(C++23)
flat_multimap
(C++23)
视图
跨度
(C++20)
mdspan
(C++23)
表格
迭代器失效
成员函数表
非成员函数表
[编辑]
std::set
成员函数
set::set
set::~set
set::operator=
set::get_allocator
迭代器
set::begin
set::cbegin
(C++11)
set::end
set::cend
(C++11)
set::rbegin
set::crbegin
(C++11)
set::rend
set::crend
(C++11)
容量
set::size
set::max_size
set::empty
观察者
set::key_comp
set::value_comp
修饰符
set::clear
set::erase
set::swap
set::extract
(C++17)
set::merge
(C++17)
set::insert
set::insert_range
(C++23)
set::emplace
(C++11)
set::emplace_hint
(C++11)
查找
set::count
set::find
set::contains
(C++20)
set::equal_range
set::lower_bound
set::upper_bound
非成员函数
operator==
operator<=>
(C++20)
std::swap
(std::set)
erase_if
(std::set)
(C++20)
operator!=
operator<
operator>
operator<=
operator>=
(直到 C++20)
(直到 C++20)
(直到 C++20)
(直到 C++20)
(直到 C++20)
推断指南
(C++17)
[编辑]
~set
(
)
;
一个
析构函数
。析构
set
。调用元素的析构函数,并释放使用的存储空间。请注意,如果元素是指针,则不会销毁所指向的对象。
[
编辑
]
复杂度
set
的大小线性。