operator==,!=,<,<=,>,>=(std::experimental::filesystem::path)
来自 cppreference.com
< cpp | experimental | fs | path
bool operator==( const path& lhs, const path& rhs ); |
(1) | (文件系统 TS) |
bool operator!=( const path& lhs, const path& rhs ); |
(2) | (文件系统 TS) |
bool operator<( const path& lhs, const path& rhs ); |
(3) | (文件系统 TS) |
bool operator<=( const path& lhs, const path& rhs ); |
(4) | (文件系统 TS) |
bool operator>( const path& lhs, const path& rhs ); |
(5) | (文件系统 TS) |
bool operator>=( const path& lhs, const path& rhs ); |
(6) | (文件系统 TS) |
按字典序比较两个路径。
1) 检查 lhs 和 rhs 是否相等。等效于 !(lhs < rhs) && !(rhs < lhs).
2) 检查 lhs 和 rhs 是否不相等。等效于 !(lhs == rhs).
3) 检查 lhs 是否小于 rhs。等效于 lhs.compare(rhs) < 0.
4) 检查 lhs 是否小于或等于 rhs。等效于 !(rhs < lhs).
5) 检查 lhs 是否大于 rhs。等效于 rhs < lhs.
6) 检查 lhs 是否大于或等于 rhs。等效于 !(lhs < rhs).
内容 |
[编辑] 参数
lhs, rhs | - | 要比较的路径 |
[编辑] 返回值
true 如果相应的比较产生,false 否则。
[编辑] 异常
noexcept 规范:
noexcept
[编辑] 说明
路径相等和等价具有不同的语义。
在相等的情况下,由 operator==
确定,仅比较词法表示。因此,path("a") == path("b") 从不为 true.
在等价的情况下,由 equivalent() 确定,它检查两个路径是否解析到同一个文件系统对象。因此 equivalent("a", "b") 将返回 true 如果路径解析到同一个文件。
[编辑] 另请参阅
按字典序比较两个路径的词法表示 (公有成员函数) |