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

履歴 編集

function
<typeinfo>

std::type_info::operator!=

// operator==により、以下の演算子が使用可能になる (C++20)
bool operator!=(const type_info& rhs) const;          // (1) C++03
bool operator!=(const type_info& rhs) const noexcept; // (1) C++11

概要

2つの型が異なるかを判定する (C++20からは、operator==から導出される)

戻り値

!(*this == rhs)

例外

投げない

#include <iostream>
#include <typeinfo>

int main()
{
  const std::type_info& a = typeid(int);
  const std::type_info& b = typeid(3);

  std::cout << std::boolalpha;
  std::cout << "different type? " << (a != b) << std::endl;
}

出力

different type? false

参照