Skip to content

Latest commit

 

History

History
73 lines (51 loc) · 1.6 KB

op_assign.md

File metadata and controls

73 lines (51 loc) · 1.6 KB

operator=

  • functional[meta header]
  • std[meta namespace]
  • copyable_function[meta class]
  • function[meta id-type]
  • cpp26[meta cpp]
copyable_function& operator=(const copyable_function& f); // (1)

copyable_function& operator=(copyable_function&& f);      // (2)

copyable_function& operator=(nullptr_t); noexcept; // (3)

template<class F>
copyable_function& operator=(F&& f);               // (4)

効果

戻り値

*this

例外

  • (3) : 投げない

#include <iostream>
#include <functional>

int ident(int x) { return x; }

int main()
{
  std::copyable_function<int(int)> f;

  // 関数を代入
  f = ident;

  int result = f(1);
  std::cout << result << std::endl;
}
  • f(1)[link op_call.md]

出力

1

バージョン

言語

  • C++26

処理系

参照