CppDS.com

C++ 98 11 14 17 20 手册

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

示例

关闭