Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 1.13 KB

swap_free.md

File metadata and controls

68 lines (51 loc) · 1.13 KB

swap (非メンバ関数)

  • memory[meta header]
  • std[meta namespace]
  • function template[meta id-type]
  • cpp11[meta cpp]
namespace std {
  template <class T>
  void swap(shared_ptr<T>& a, shared_ptr<T>& b) noexcept;
}

概要

2つのshared_ptrオブジェクトを入れ替える。

効果

a.swap(b)

戻り値

なし

例外

投げない

#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を入れ替える
  std::swap(a, b);

  std::cout << a << std::endl;
  std::cout << b << std::endl;
}
  • std::swap[color ff0000]

出力例

0x14ab010
0x14ab060
0x14ab060
0x14ab010

バージョン

言語

  • C++11

処理系

  • GCC: 4.3.6 [mark verified]
  • Clang: 3.0 [mark verified]
  • ICC: ?
  • Visual C++: 2008 (TR1) [mark verified], 2010 [mark verified], 2012 [mark verified], 2013 [mark verified]