std::flat_multiset<Key,Compare,KeyContainer>::extract
来自 cppreference.com
container_type extract() &&; |
(自 C++23 起) | |
提取适应的容器 c
。等效于 return std::move(c);.
此操作后,*this 为空,即使抛出异常。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
std::move(c).
[编辑] 复杂度
常数。
[编辑] 示例
运行此代码
#include <cassert> #include <flat_set> #include <print> #include <type_traits> #include <vector> int main() { std::flat_multiset<int> set{1, 2, 3}; const auto size = set.size(); auto c = set.extract(); assert(c.size() == size); assert(set.empty()); assert(set.keys().empty()); assert(set.values().empty()); // The default keys container is std::vector: static_assert(std::is_same_v<decltype(c), std::vector<int>>); std::println("{}", c); }
输出
[1, 2, 3]
[编辑] 另请参见
替换底层容器 (公有成员函数) |