operator==,!=,<,<=,>,>=(std::experimental::filesystem::path)

来自cppreference.com
< cpp‎ | experimental‎ | fs‎ | path


 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS 功能特性
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
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) 检查 lhsrhs 是否相等。等价于 !(lhs < rhs) && !(rhs < lhs)
2) 检查 lhsrhs 是否不相等。等价于 !(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

参阅

按字典序比较两个路径的词法表示
(公开成员函数)