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 起)

以另一个 file_status 对象进行复制或移动赋值。

[编辑]参数

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

[编辑]返回值

*this

[编辑]示例

close