Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 1.45 KB

op_greater_equal.md

File metadata and controls

57 lines (44 loc) · 1.45 KB

operator>=

  • string[meta header]
  • std[meta namespace]
  • function template[meta id-type]
namespace std {
  template <class CharT, class Traits, class Allocator>
  bool operator>=(const basic_string<CharT, Traits, Allocator>& a,
                  const basic_string<CharT, Traits, Allocator>& b); // (1) C++03

  template <class CharT, class Traits, class Allocator>
  bool operator>=(const basic_string<CharT, Traits, Allocator>& a,
                  const basic_string<CharT, Traits, Allocator>& b) noexcept; // (1) C++14

  template <class CharT, class Traits, class Allocator>
  bool operator>=(const CharT* a,
                  const basic_string<CharT, Traits, Allocator>& b);          // (2)

  template <class CharT, class Traits, class Allocator>
  bool operator>=(const basic_string<CharT, Traits, Allocator>& a,
                  const CharT* rhs) noexcept;                                // (3)
}

概要

basic_stringにおいて、左辺が右辺以上かの判定を行う。

戻り値

#include <iostream>
#include <string>

int main()
{
  std::string a = "bbb";
  std::string b = "aaa";

  std::cout << std::boolalpha;
  std::cout << (a >= b) << std::endl;
}

出力

true

参照