std::basic_fstream::operator=
来自cppreference.com
< cpp | io | basic fstream
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| basic_ifstream& operator=( basic_fstream&& other ); |
(C++11 起) | |
移动文件流。手术后的源数据流会变成无效状态.
Original:
Moves the file stream. The source stream becomes of invalid state after the operation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目录 |
[编辑] 参数
| other | - | 文件流来移动。
other手术后会变成无效状态. Original: file stream to move. other becomes of invalid state after the operation. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[编辑] 返回值
*this
[编辑] 为例
| 本节是不完整的 原因: no example |
[编辑] 另请参阅
| (C++11) |
交换两个文件流 Original: swaps two file streams The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共成员函数) |