std::stack<T,Container>::~stack 来自cppreference.com < cpp | container | stack C++ 语言 标准库头文件 自立与有宿主实现 具名要求 语言支持库 概念库 (C++20) 诊断库 工具库 字符串库 容器库 迭代器库 范围库 (C++20) 算法库 数值库 本地化库 输入/输出库 文件系统库 (C++17) 正则表达式库 (C++11) 原子操作库 (C++11) 线程支持库 (C++11) 技术规范 容器库 array(C++11) vector deque forward_list(C++11) list set multiset map multimap unordered_set(C++11) unordered_multiset(C++11) unordered_map(C++11) unordered_multimap(C++11) stack queue priority_queue span(C++20) std::stack 成员函数 stack::stack stack::~stack stack::operator= 元素访问 stack::top 容量 stack::empty stack::size 修改器 stack::push stack::emplace stack::pop stack::swap 非成员函数 operator==operator!=operator<operator>operator<=operator>=operator<=>(C++20) std::swap 推导指引(C++17) ~stack(); 销毁 stack 。调用元素的析构函数,然后解分配所用的存储。注意,若元素是指针,则不销毁所指向的对象。 复杂度 与 stack 大小成线性。