std::basic_ifstream<CharT,Traits>::operator=
來自 cppreference.com
< cpp | io | basic ifstream
basic_ifstream& operator=( basic_ifstream&& other ); |
(C++11 起) | |
將檔案流 other 移動賦值給 *this,有效地同時移動賦值 std::basic_istream 基類和關聯的 std::basic_filebuf。
other 將不再關聯任何檔案。注意,基類移動賦值會交換 *this 和 other 之間所有流狀態變數(除了 rdbuf)。
目錄 |
[編輯] 引數
其他 | - | 要移動的檔案流 |
[編輯] 返回值
*this
[編輯] 示例
本節不完整 原因:無示例 |
[編輯] 參閱
(C++11) |
交換兩個檔案流 (public 成員函式) |
(C++11) |
賦值一個 basic_filebuf 物件( std::basic_filebuf<CharT,Traits> 的 public 成員函式) |
(C++11) |
從另一個 basic_istream 移動賦值(protected 成員函式) |