命名空间
变体
操作

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

来自 cppreference.cn
< cpp‎ | string‎ | basic_string
 
 
 
std::basic_string
 
void swap( basic_string& other );
(C++17 前)
void swap( basic_string& other ) noexcept(/* 见下文 */);
(C++17 起)
(C++20 起为 constexpr)

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

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

(C++11 起)

目录

[编辑] 参数

其他 - 要交换内容的字符串

[编辑] 复杂度

常数时间。

[编辑] 异常

不抛出任何异常。

(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++ 标准。

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

[编辑] 另请参阅

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