description | title | ms.date | f1_keywords | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: <sstream> typedefs |
<sstream> typedefs |
11/04/2016 |
|
istringstream
ostringstream
stringbuf
stringstream
wistringstream
wostringstream
wstringbuf
wstringstream
Creates a type basic_istringstream
specialized on a char
template parameter.
typedef basic_istringstream<char> istringstream;
The type is a synonym for class template basic_istringstream
, specialized for elements of type char
.
Creates a type basic_ostringstream
specialized on a char
template parameter.
typedef basic_ostringstream<char> ostringstream;
The type is a synonym for class template basic_ostringstream
, specialized for elements of type char
.
Creates a type basic_stringbuf
specialized on a char
template parameter.
typedef basic_stringbuf<char> stringbuf;
The type is a synonym for class template basic_stringbuf
, specialized for elements of type char
.
Creates a type basic_stringstream
specialized on a char
template parameter.
typedef basic_stringstream<char> stringstream;
The type is a synonym for class template basic_stringstream
, specialized for elements of type char
.
Creates a type basic_istringstream
specialized on a wchar_t
template parameter.
typedef basic_istringstream<wchar_t> wistringstream;
The type is a synonym for class template basic_istringstream
, specialized for elements of type wchar_t
.
Creates a type basic_ostringstream
specialized on a wchar_t
template parameter.
typedef basic_ostringstream<wchar_t> wostringstream;
The type is a synonym for class template basic_ostringstream
, specialized for elements of type wchar_t
.
Creates a type basic_stringbuf
specialized on a wchar_t
template parameter.
typedef basic_stringbuf<wchar_t> wstringbuf;
The type is a synonym for class template basic_stringbuf
, specialized for elements of type wchar_t
.
Creates a type basic_stringstream
specialized on a wchar_t
template parameter.
typedef basic_stringstream<wchar_t> wstringstream;
The type is a synonym for class template basic_stringstream
, specialized for elements of type wchar_t
.