Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.09 KB

op_greater.md

File metadata and controls

57 lines (43 loc) · 1.09 KB

operator>

  • filesystem[meta header]
  • std::filesystem[meta namespace]
  • function[meta id-type]
  • cpp17[meta cpp]
namespace std::filesystem {
  // operator<=>により、以下のオーバーロードが使用可能になる (C++20)
  bool operator>(const path& lhs, const path& rhs) noexcept; // (1) C++17
}

概要

pathクラスにおいて、左辺が右辺より大きいかの判定を行う。

戻り値

return rhs < lhs;

#include <cassert>
#include <filesystem>

namespace fs = std::filesystem;

int main()
{
  fs::path a = "a/b/d";
  fs::path b = "a/b/c";

  assert(a > b);
}
  • a > b[color ff0000]

出力

バージョン

言語

  • C++17

処理系

参照