operator>>()
Contents
[
Hide
]System::operator»(std::istream&, String&) function
Gets a string from the input streamusing UTF-8 encoding.
std::istream & System::operator>>(std::istream &in, String &str)
Arguments
Parameter | Type | Description |
---|---|---|
in | std::istream& | An input stream object (instantiation of basic_ostream with char). |
str | String& | A string to read from the input stream. |
Return Value
An input stream from which the string was extracted.
System::operator»(std::wistream&, String&) function
Gets a string from the input stream.
std::wistream & System::operator>>(std::wistream &in, String &str)
Arguments
Parameter | Type | Description |
---|---|---|
in | std::wistream& | An input stream object (instantiation of basic_ostream with wchar_t). |
str | String& | A string to read from the input stream. |
Return Value
An input stream from which the string was extracted.
See Also
- Class String
- Namespace System
- Library Aspose.Slides