- string[meta header]
- std[meta namespace]
- basic_string[meta class]
- function[meta id-type]
void swap(basic_string& str);
void swap(basic_string& str) noexcept
(allocator_traits<Allocator>::propagate_on_container_swap::value
|| allocator_traits<Allocator>::is_always_equal::value); // C++17
他の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;
}
- swap[color ff0000]
world
hello
- N4258 Cleaning-up noexcept in the Library, Rev 3
noexcept
追加の経緯となる提案文書