std::filesystem::file_status::operator=
提供: cppreference.com
< cpp | filesystem | file status
file_status& operator=( const file_status& other ) noexcept = default; |
(1) | (C++17以上) |
file_status& operator=( file_status&& other ) noexcept = default; |
(2) | (C++17以上) |
別のファイルステータスオブジェクトをコピー代入またはムーブ代入します。
[編集] 引数
other | - | 代入する別のファイルステータスオブジェクト |
[編集] 戻り値
*this。
[編集] 例
This section is incomplete Reason: no example |