std::priority_queue<T,Container,Compare>::swap
来自 cppreference.com
void swap( priority_queue& other ) noexcept(/* see below */); |
(自 C++11 起) | |
other
的内容。实际上调用using std::swap; swap(c, other.c); swap(comp, other.comp);
内容 |
[编辑] 参数
other | - | 要交换内容的容器适配器 |
[编辑] 返回值
(无)
[编辑] 异常
noexcept 规范:
noexcept(noexcept(swap(c, other.c)) && noexcept(swap(comp, other.comp))) 在上面的表达式中,标识符 |
(自 C++11 起) (直至 C++17) |
noexcept 规范:
noexcept(std::is_nothrow_swappable_v<Container> && std::is_nothrow_swappable_v<Compare>) |
(自 C++17 起) |
[编辑] 复杂度
与底层容器相同(通常为常数)。
注释
一些实现(例如 libc++)提供了swap
成员函数作为对 C++11 之前模式的扩展。
[编辑] 示例
运行此代码
#include <iostream> #include <concepts> #include <functional> #include <queue> #include <string> #include <string_view> #include <vector> template<typename Adaptor> requires (std::ranges::input_range<typename Adaptor::container_type>) void print(std::string_view name, const Adaptor& adaptor) { struct Printer : Adaptor // to use protected Adaptor::Container c; { void print(std::string_view name) const { std::cout << name << " [" << std::size(this->c) << "]: "; for (auto const& elem : this->c) std::cout << elem << ' '; std::cout << '\n'; } }; static_cast<Printer const&>(adaptor).print(name); } int main() { std::vector<std::string> v1{"1","2","3","4"}, v2{"Ɐ","B","Ɔ","D","Ǝ"}; std::priority_queue s1(std::less<>(), std::move(v1)); std::priority_queue s2(std::less<>(), std::move(v2)); print("s1", s1); print("s2", s2); s1.swap(s2); print("s1", s1); print("s2", s2); }
输出
s1 [4]: 4 3 2 1 s2 [5]: Ǝ D Ɔ B Ɐ s1 [5]: Ǝ D Ɔ B Ɐ s2 [4]: 4 3 2 1
缺陷报告
以下行为变更缺陷报告被追溯地应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2456 | C++11 | noexcept 规范格式错误 |
使之生效 |
[编辑] 另请参阅
专门化了 std::swap 算法 (函数模板) |