命名空间
变体
操作

std::filesystem::filesystem_error::operator=

来自 cppreference.com
 
 
 
 
filesystem_error& operator=( const filesystem_error& other ) noexcept;
(自 C++17 起)

other 的内容赋值。如果 *thisother 都具有动态类型 std::filesystem::filesystem_error,则赋值后 std::strcmp(what(), other.what()) == 0

内容

[编辑] 参数

other - 另一个要赋值的 filesystem_error 对象

[编辑] 返回值

*this

[编辑] 注释

典型的实现将 path1()path2() 引用的 path 对象存储在引用计数存储中。因此,赋值后 *thisother 通常会共享它们的 path 对象。

[编辑] 示例