命名空间
变体
操作

std::queue<T,Container>::swap

来自 cppreference.com
< cpp‎ | container‎ | queue
void swap( queue& other ) noexcept(/* see below */);
(自 C++11 起)
交换容器适配器的内容与 other 的内容。实际上调用
using std::swap;
swap(c, other.c);

内容

[编辑] 参数

other - 要交换内容的容器适配器

[编辑] 返回值

(无)

[编辑] 异常

noexcept 规范:  
noexcept(noexcept(swap(c, other.c)))

在上面的表达式中,标识符 swap 的查找方式与 C++17 std::is_nothrow_swappable 特征的查找方式相同。

(自 C++11 起)
(直到 C++17)
noexcept 规范:  
noexcept(std::is_nothrow_swappable_v<Container>)
(自 C++17 起)

[编辑] 复杂度

与底层容器相同(通常为常数)。

备注

一些实现(例如 libc++)提供 swap 成员函数作为对 C++11 前模式的扩展。

[编辑] 示例

#include <iostream>
#include <concepts>
#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::queue s1(std::move(v1));
    std::queue s2(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 算法
(函数模板) [编辑]