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

履歴 編集

function template
<queue>

std::operator!=

namespace std {
  template <class T, class Container>
  bool operator!=(const queue<T, Container>& x, const queue<T, Container>& y);
}

概要

queueの非等値比較を行う

戻り値

x.c != y.c

#include <iostream>
#include <queue>

int main ()
{
  std::queue<int> x;
  x.push(1);
  x.push(2);
  x.push(3);

  std::queue<int> y;
  y.push(1);
  y.push(2);
  y.push(3);

  std::cout << std::boolalpha;
  std::cout << (x != y) << std::endl;

  y.push(4);

  std::cout << (x != y) << std::endl; // not equal size
}

出力

false
true

参照