命名空间
变体
操作

std::filesystem::directory_entry::operator==,!=,<,<=,>,>=,<=>

来自 cppreference.com
 
 
 
 
bool operator==( const directory_entry& rhs ) const noexcept;
(1) (自 C++17 起)
bool operator!=( const directory_entry& rhs ) const noexcept;
(2) (自 C++17 起)
(直到 C++20)
bool operator<( const directory_entry& rhs ) const noexcept;
(3) (自 C++17 起)
(直到 C++20)
bool operator<=( const directory_entry& rhs ) const noexcept;
(4) (自 C++17 起)
(直到 C++20)
bool operator>( const directory_entry& rhs ) const noexcept;
(5) (自 C++17 起)
(直到 C++20)
bool operator>=( const directory_entry& rhs ) const noexcept;
(6) (自 C++17 起)
(直到 C++20)
std::strong_ordering operator<=>( const directory_entry& rhs ) const noexcept;
(7) (自 C++20 起)

将路径与目录项 rhs 进行比较。

<<=>>=!= 运算符分别从 operator<=>operator== 合成。

(自 C++20 起)

[编辑] 参数

rhs - 要比较的目录项

[编辑] 返回值

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
7) path() <=> rhs.path() 的结果。

[编辑] 另请参阅

返回条目所指的路径
(公有成员函数) [编辑]