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

履歴 編集

function template
<random>

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

namespace std {
  template <class UIntType, UIntType a, UIntType c, UIntType m>
  bool operator!=(
    const linear_congruential_engine<UIntType, a, c, m>& x,
    const linear_congruential_engine<UIntType, a, c, m>& y);
}

概要

非等値比較を行う。

戻り値

xyの状態シーケンスの、全ての値を等値比較し、等しくなければtrue、そうでなければfalseを返す。

計算量

O(状態シーケンスのサイズ)

#include <iostream>
#include <random>

int main()
{
  std::minstd_rand e1;
  std::minstd_rand e2;

  e1(); // e1 == e2にならないよう、e1の状態を進める

  if (e1 != e2) {
    std::cout << "not equal" << std::endl;
  }
  else {
    std::cout << "equal" << std::endl;
  }
}

出力

not equal

バージョン

言語

  • C++11

処理系

参照