命名空间
变体
操作

std::filesystem::file_status::operator=

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

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

[edit] 参数

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

[edit] 返回值

*this

[edit] 示例