operators (std::filesystem::path)
运算符=,%21=,<,<=,>=%28std::file system::path%29
bool operator==( const path& lhs, const path& rhs | (1) | (since C++17) |
---|---|---|
bool operator!=( const path& lhs, const path& rhs | (2) | (since C++17) |
bool operator<( const path& lhs, const path& rhs | (3) | (since C++17) |
bool operator<=( const path& lhs, const path& rhs | (4) | (since C++17) |
bool operator>( const path& lhs, const path& rhs | (5) | (since C++17) |
bool operator>=( const path& lhs, const path& rhs | (6) | (since C++17) |
按字典顺序比较两条路径。
1%29检查是否lhs和rhs是平等的。相当于!(lhs < rhs) && !(rhs < lhs)...
2%29检查是否lhs
和rhs
不平等。相当于!(lhs == rhs)
...
3%29检查是否lhs小于rhs相当于lhs.compare(rhs) < 0...
4%29检查是否lhs小于或等于rhs相当于!(rhs < lhs)...
5%29检查是否lhs大于rhs相当于rhs < lhs...
6%29检查是否lhs大于或等于rhs相当于!(lhs < rhs)...
参数
lhs, rhs | - | the paths to compare |
---|
返回值
true
如果相应的比较产生,false
否则。
例外
noexcept
规格:
noexcept
注记
路径相等和等价具有不同的语义。
在平等的情况下,由operator==
,只对词法表示进行比较。因此,path("a") == path("b")
永远不会true
...
在对等的情况下,由equivalent()
,则检查是否有两条路径。决断
到同一个文件系统对象。因此equivalent("a", "b")
会回来true
如果路径解析到同一个文件。
另见
compare | compares the lexical representations of two paths lexicographically (public member function) |
---|
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。
http://en.cppreference.com/w/cpp/file system/path/Operator[医]CMP