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

履歴 編集

function
<filesystem>

std::filesystem::operator==(C++17)

namespace std::filesystem {
  bool operator==(const path& lhs, const path& rhs) noexcept; // (1) C++17

  class path {
  public:
    friend bool operator==(const path& lhs, const path& rhs) noexcept; // (1) C++20
  };
}

概要

等値比較を行う

戻り値

  • (1):

    • C++17

      return !(lhs < rhs) && !(rhs < lhs);
      

    • C++20

    return lhs.compare(rhs) == 0;
    

備考

  • (1) : lhs.compare(rhs) == 0と等価 (C++17)
  • この演算子はパス要素列の等価性を判定するため、パスが意味的に同一かどうかを判定することはできない。パス文字列の意味的な等価性判定には、filesystem::equivalent()を使用する
  • この演算子により、operator!=が使用可能になる (C++20)

#include <cassert>
#include <filesystem>

namespace fs = std::filesystem;

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

  assert(a == a);
  assert(!(a == b));

  // 正規化は考慮されない。
  // ファイルシステムとしてのパスの等価性ではなく、
  // パス文字列の同値性が比較されれる
  fs::path c = "a/../b/c";
  assert(!(a == c));
}

出力

バージョン

言語

  • C++17

処理系

参照