名前空間
変種
操作

std::filesystem::file_status::operator=

提供: cppreference.com
< cpp‎ | filesystem‎ | file status
2018年4月12日 (木) 07:52時点におけるMilkpot (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
 
 
 
 
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

[編集]