Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 929 Bytes

op_greater.md

File metadata and controls

49 lines (37 loc) · 929 Bytes

operator>

  • utility[meta header]
  • std[meta namespace]
  • function template[meta id-type]
namespace std {
  template <class T1, class T2>
  bool operator>(const pair<T1, T2>& x, const pair<T1, T2>& y);           // C++03

  template <class T1, class T2>
  constexpr bool operator>(const pair<T1, T2>& x, const pair<T1, T2>& y); // C++14
}

概要

2つの変数において、左辺が右辺より大きいかの判定を行う

戻り値

y < x

#include <iostream>
#include <utility>
#include <string>

int main()
{
  std::pair<int, std::string> p1(1, "aaa");
  std::pair<int, std::string> p2(2, "bbb");

  std::cout << std::boolalpha;
  std::cout << (p1 > p2) << std::endl;
  std::cout << (p2 > p1) << std::endl;
}

出力

false
true

参照