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

履歴 編集

function template
<array>

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

namespace std {
  template <class T, size_t N>
  bool operator==(const array<T, N>& x, const array<T, N>& y);           // C++11

  template <class T, size_t N>
  constexpr bool operator==(const array<T, N>& x, const array<T, N>& y); // C++20
}

概要

arrayオブジェクトの等値比較を行う。

要件

Toperator==で等値比較可能であること。

効果

戻り値

xyの要素が全て等値であればtrue、そうでなければfalseを返す。

計算量

線形時間

備考

  • この演算子により、以下の演算子が使用可能になる (C++20):
    • operator!=

#include <iostream>
#include <array>

int main()
{
  std::array<int, 3> x = {1, 2, 3};
  std::array<int, 3> y = {1, 2, 3};

  if (x == y) {
    std::cout << "equal" << std::endl;
  }
  else {
    std::cout << "not equal" << std::endl;
  }
}

出力

equal

バージョン

言語

  • C++11

処理系

参照