Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 1.01 KB

swap.md

File metadata and controls

71 lines (49 loc) · 1.01 KB

swap

  • functional[meta header]
  • std[meta namespace]
  • function[meta class]
  • function[meta id-type]
  • cpp11[meta cpp]
void swap(function& other) noexcept;

概要

他のfunctionオブジェクトと中身を入れ替える。

効果

*thisが持つ関数とotherが持つ関数を交換する。

戻り値

なし

例外

投げない

#include <iostream>
#include <functional>

int ident(int x) { return x; }
int add(int x) { return x + 1; }

int main()
{
  std::function<int(int)> f = ident;
  std::function<int(int)> g = add;

  // fとgを交換
  f.swap(g);

  std::cout << f(1) << std::endl; // add
  std::cout << g(1) << std::endl; // ident
}
  • swap[color ff0000]
  • f(1)[link op_call.md]
  • g(1)[link op_call.md]

出力

2
1

バージョン

言語

  • C++11

処理系

参照