std::experimental::filesystem::directory_entry::operator==,!=,<,<=,>,>=
来自 cppreference.com
< cpp | experimental | fs | directory entry
bool operator==( const directory_entry& rhs ) const; |
(1) | (文件系统 TS) |
bool operator!=( const directory_entry& rhs ) const; |
(2) | (文件系统 TS) |
bool operator<( const directory_entry& rhs ) const; |
(3) | (文件系统 TS) |
bool operator<=( const directory_entry& rhs ) const; |
(4) | (文件系统 TS) |
bool operator>( const directory_entry& rhs ) const; |
(5) | (文件系统 TS) |
bool operator>=( const directory_entry& rhs ) const; |
(6) | (文件系统 TS) |
将路径与目录项 rhs 进行比较。
内容 |
[编辑] 参数
rhs | - | 要比较的 directory_entry |
[编辑] 返回值
1) true 如果 path() == rhs.path(),否则为 false。
2) true 如果 path() != rhs.path(),否则为 false。
3) true 如果 path() < rhs.path(),否则为 false。
4) true 如果 path() <= rhs.path(),否则为 false。
5) true 如果 path() > rhs.path(),否则为 false。
6) true 如果 path() >= rhs.path(),否则为 false。
[编辑] 异常
noexcept 规范:
noexcept
[编辑] 参见
返回条目指向的路径 (公共成员函数) |