void swap(basic_string& str); // (1) C++03
void swap(basic_string& str) noexcept
(allocator_traits<Allocator>::propagate_on_container_swap::value
|| allocator_traits<Allocator>::is_always_equal::value); // (1) C++17
constexpr void swap(basic_string& str) noexcept
(allocator_traits<Allocator>::propagate_on_container_swap::value
|| allocator_traits<Allocator>::is_always_equal::value); // (1) C++20
概要
他のbasic_string
オブジェクトとデータを入れ替える。
効果
*this
の内容をstr
と交換する。
戻り値
なし
計算量
定数時間
例
#include <iostream>
#include <string>
int main()
{
std::string a = "hello";
std::string b = "world";
a.swap(b);
std::cout << a << std::endl;
std::cout << b << std::endl;
}
出力
world
hello
参照
- N4258 Cleaning-up noexcept in the Library, Rev 3
noexcept
追加の経緯となる提案文書
- P0980R1 Making
std::string
constexpr