void swap(stop_source&) noexcept;
概要
他の stop_source
オブジェクトと値を入れ替える。
戻り値
なし
例外
投げない。
例
#include <cassert>
#include <stop_token>
int main()
{
std::stop_source ss1;
std::stop_source ss2(std::nostopstate);
assert(ss1.stop_possible() == true);
assert(ss2.stop_possible() == false);
ss1.swap(ss2);
assert(ss1.stop_possible() == false);
assert(ss2.stop_possible() == true);
}
xxxxxxxxxx
#include <cassert>
#include <stop_token>
int main()
{
std::stop_source ss1;
std::stop_source ss2(std::nostopstate);
assert(ss1.stop_possible() == true);
assert(ss2.stop_possible() == false);
ss1.swap(ss2);
assert(ss1.stop_possible() == false);
assert(ss2.stop_possible() == true);
}
出力
バージョン
言語
- C++20
処理系
- Clang: ??
- GCC: ??
- ICC: ??
- Visual C++: ??