- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ Set 库 - ~set() 函数
描述
C++ 析构函数std::set::~set()析构 set 容器。这确保了已使用的存储被释放。
注意:如果元素是指针,则所指向的对象不会被销毁。它仅确保所有迭代器、指针和引用都无效。
宣言
以下是 std::set::~set() 析构函数在各种 C++ 版本中的工作方式。
C++98
~set() destroys all set container elements, and deallocates all the storage capacity allocated by the container using its allocator.
C++11
~set() calls allocator_traits::destroy on each of the contained elements, and deallocates all the storage capacity allocated by the set container using its allocator.
C++14
~set() calls allocator_traits::destroy on each of the contained elements, and deallocates all the storage capacity allocated by the set container using its allocator.
返回值
析构函数从不返回任何值。
例外情况
如果抛出任何异常,该成员函数将不起作用。
时间复杂度
与容器的大小成线性关系,即 O(N)
例子
以下示例显示了 std::set::~set() 析构函数的用法。
#include <iostream> #include <set> #include <string> using namespace std; int main(void) { //Default constructor std::set<string> t_set; t_set.insert("Tutorials Point"); return 0; }
上面的程序可以正确编译并执行。
从 main() 返回的那一刻;析构函数~set()将被调用来销毁集合容器't_set'
设置.htm