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
本节未完成 原因:暂无示例 |
赋值内容 (公开成员函数) |