void swap(shared_ptr& x) noexcept;
概要
他のshared_ptr
オブジェクトとデータを入れ替える。
効果
*this
とx
のデータを入れ替える。
戻り値
なし
例外
投げない
例
#include <iostream>
#include <memory>
int main()
{
std::shared_ptr<int> a(new int(3));
std::shared_ptr<int> b(new int(1));
std::cout << a << std::endl;
std::cout << b << std::endl;
// aとbを入れ替える
a.swap(b);
std::cout << a << std::endl;
std::cout << b << std::endl;
}
18
#include <iostream>
#include <memory>
int main()
{
std::shared_ptr<int> a(new int(3));
std::shared_ptr<int> b(new int(1));
std::cout << a << std::endl;
std::cout << b << std::endl;
// aとbを入れ替える
a.swap(b);
std::cout << a << std::endl;
std::cout << b << std::endl;
}
出力例
0x14ab010
0x14ab060
0x14ab060
0x14ab010
バージョン
言語
- C++11
処理系
- GCC: 4.3.6 ✅
- Clang: 3.0 ✅
- ICC: ?
- Visual C++: 2008 (TR1) ✅, 2010 ✅, 2012 ✅, 2013 ✅