function
<string>
std::operator<< (string)
ostream& operator<< (ostream& os, const string& str);
Insert string into stream
This function overloads
operator<< to behave as described in ostream::operator<< for c-strings, but applied to string objects.Parameters
Return Value
The same as parameter os.If some error happens during the output operation, the stream's badbit flag is set, and if the appropriate flag has been set with ios::exceptions, an exception is thrown.
Example
|
|
Complexity
Unspecified, but generally linear in str's length.Iterator validity
No changes.Data races
Objects os is modified.Exception safety
Basic guarantee: if an exception is thrown, both is and str end up in a valid state.See also
- ostream::operator<<
- Insert formatted output (public member function)
- operator>> (string)
- Extract string from stream (function)