命名空间
变体
操作

std::filesystem::file_status::operator=

来自 cppreference.com
 
 
 
 
file_status& operator=( const file_status& other ) noexcept = default;
(1) (自 C++17 起)
file_status& operator=( file_status&& other ) noexcept = default;
(2) (自 C++17 起)

复制或移动赋值另一个文件状态对象。

[编辑] 参数

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

[编辑] 返回值

*this

[编辑] 示例