Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 696 Bytes

op_greater.md

File metadata and controls

53 lines (40 loc) · 696 Bytes

operator>

  • queue[meta header]
  • std[meta namespace]
  • function template[meta id-type]
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(4);
  x.push(5);
  x.push(6);

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

  std::cout << std::boolalpha << (x > y) << std::endl;
}
  • x > y[color ff0000]
  • push[link push.md]

出力

true

参照