命名空间
变体
操作

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 的复制赋值运算符和移动赋值运算符都是默认的。

内容

[编辑] 参数

other - 另一个 directory_entry

[编辑] 返回值

*this

[编辑] 示例

[编辑] 另请参阅

分配内容
(公有成员函数) [编辑]