description | title | ms.date | f1_keywords | ms.assetid | ||||
---|---|---|---|---|---|---|---|---|
Learn more about: <istream> typedefs |
<istream> typedefs |
11/04/2016 |
|
55bc1f84-53a7-46ca-a36f-ac6ef75d0374 |
iostream
istream
wiostream
wistream
A type basic_iostream
specialized on char
.
typedef basic_iostream<char, char_traits<char>> iostream;
The type is a synonym for class template basic_iostream, specialized for elements of type char
with default character traits.
A type basic_istream
specialized on char
.
typedef basic_istream<char, char_traits<char>> istream;
The type is a synonym for class template basic_istream, specialized for elements of type char
with default character traits.
A type basic_iostream
specialized on wchar_t
.
typedef basic_iostream<wchar_t, char_traits<wchar_t>> wiostream;
The type is a synonym for class template basic_iostream, specialized for elements of type wchar_t
with default character traits.
A type basic_istream
specialized on wchar_t
.
typedef basic_istream<wchar_t, char_traits<wchar_t>> wistream;
The type is a synonym for class template basic_istream, specialized for elements of type wchar_t
with default character traits.