命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::swap

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
修饰符
basic_string::swap
搜索
操作
常量
非成员函数
I/O
比较
(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
字面量
辅助类
推断指南 (C++17)

 
void swap( basic_string& other );
(直到 C++17)
void swap( basic_string& other ) noexcept(/* see below */);
(自 C++17 起)
(自 C++20 起为 constexpr)

将字符串的内容与 other 的内容交换。所有迭代器和引用都可能失效。

如果 std::allocator_traits<Allocator>::
    propagate_on_container_swap::value &&
get_allocator() == s.get_allocator()
false,则行为未定义。

(自 C++11 起)

内容

[编辑] 参数

other - 要交换内容的字符串

[编辑] 复杂度

常数。

[编辑] 异常

不会抛出异常。

(直到 C++11)

不会抛出异常,除非行为未定义。

如果由于任何原因抛出异常,则此函数无效 (强大的异常安全性保证).

(自 C++11 起)


noexcept 规范:  
noexcept(std::allocator_traits<Allocator>::propagate_on_container_swap::value ||
         std::allocator_traits<Allocator>::is_always_equal::value)
(自 C++17 起)

[编辑] 示例

#include <iostream>
#include <string>
 
int main() 
{
    std::string a = "AAA";
    std::string b = "BBBB";
 
    std::cout << "Before swap:\n"
                 "a = " << a << "\n"
                 "b = " << b << "\n\n";
 
    a.swap(b);
 
    std::cout << "After swap:\n"
                 "a = " << a << "\n"
                 "b = " << b << '\n';
}

输出

Before swap:
a = AAA
b = BBBB
 
After swap:
a = BBBB
b = AAA

[编辑] 缺陷报告

以下行为更改缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 403 C++98 swap() 可能抛出异常 不会抛出异常
LWG 535 C++98 交换字符串未保留字符顺序 顺序也已保留
LWG 2151
(P1148R0)
C++11 在以下情况下不会抛出异常
不平等的非传播分配器
行为是
在这种情况下未定义

[编辑] 另请参阅

交换两个对象的值
(函数模板) [编辑]
交换两个元素范围
(函数模板) [编辑]
交换内容
(std::basic_string_view<CharT,Traits> 的公共成员函数) [编辑]