std::basic_ostream::write
|
|
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_ostream& write( const char_type* s, std::streamsize count ); |
||
Outputs characters from successive locations in the character array whose first element is pointed to by s. Characters are inserted into the output sequence until one of the following occurs:
- exactly
countcharacters are inserted - inserting into the output sequence fails (in which case setstate(badbit) is called)
sentry,刷新tie()'d的输出缓冲区,如果必要的检查流错误。项目建成后,false如果哨兵对象返回,该函数返回没有尝试任何输出。如果抛出一个异常,然后在输出的ios :: badbit(exceptions()&badbit != 0被抑制,除非,在这种情况下,它被重新抛出异常)sentry, which flushes the tie()'d output buffers if necessary and checks the stream errors. After construction, if the sentry object returns false, the function returns without attempting any output. If an exception is thrown during output, then ios::badbit is set (the exception is suppressed unless exceptions()&badbit != 0, in which case it is rethrown)You can help to correct and verify the translation. Click here for instructions.
目录 |
[编辑] 参数
| s | - | pointer to the character string to write |
| count | - | number of characters to write |
[编辑] 返回值
*this
[编辑] 注释
You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.
You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.
You can help to correct and verify the translation. Click here for instructions.
Also, unlike the formatted output functions, this function does not set the failbit on failure.
[编辑] 例外
If an exception occurs during output and exceptions()&badbit != 0, rethrows that exception.
If output fails and exceptions()&badbit != 0, throws ios_base::failure.
[编辑] 为例
This function may be used to output object representations, i.e. binary output
Output:
DCBA
[编辑] 另请参阅
| 插入字符数据 Original: inserts character data The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (函数) | |
| 插入一个字符 Original: inserts a character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共成员函数) | |