最終更新日時(UTC):
が更新

履歴 編集

function template
<functional>

std::operator!=(C++11)

namespace std {
  // operator==により、以下のオーバーロードが使用可能になる (C++20)
  template <class R, class... ArgTypes>
  bool operator!=(const function<R(ArgTypes...)>& f, nullptr_t) noexcept; // (1) C++11

  template <class R, class... ArgTypes>
  bool operator!=(nullptr_t, const function<R(ArgTypes...)>& f) noexcept; // (2) C++11
}

概要

非等値比較する。

戻り値

static_cast<bool>(f)

#include <iostream>
#include <functional>

int ident(int x) { return x; }

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

  if (f != nullptr) {
    std::cout << "not empty" << std::endl;
  }

  f = nullptr;
  if (f != nullptr) {}
  else {
    std::cout << "empty" << std::endl;
  }
}

出力

not empty
empty

バージョン

言語

  • C++11

処理系

参照