basic_ostream& write( const char_type* s, std::streamsize count ); |
Behaves as an UnformattedOutputFunction. After constructing and checking the sentry object, outputs the 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:
count characters are inserted setstate(badbit) is called) | s | - | pointer to the character string to write |
| count | - | number of characters to write |
*this.
This function is not overloaded for the types signed char or unsigned char, unlike the formatted operator<<
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.
#include <iostream>
int main()
{
int n = 0x41424344;
std::cout.write(reinterpret_cast<char*>(&n), sizeof n) << '\n';
char c[]="This is sample text.";
std::cout.write(c,4)<<'\n';
}Possible output:
DCBA This
| inserts character data (function template) |
|
| inserts a character (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/io/basic_ostream/write