CppDS.com

C++ 98 11 14 17 20 手册

std::filesystem::directory_entry::operator=

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

other 的内容(路径及缓存属性,若存在)替换该 directory_entry 的内容。

directory_entry 的复制与移动赋值运算符均为默认。

参数

other - 另一个 directory_entry

返回值

*this

示例

参阅

赋值内容
(公开成员函数)
关闭