次の方法で共有


<istream> typedefs

 

The latest version of this topic can be found at <istream> typedefs.

iostream istream wiostream
wistream

iostream

A type basic_iostream specialized on char.

typedef basic_iostream<char, char_traits<char>> iostream;  

Remarks

The type is a synonym for template class basic_iostream, specialized for elements of type char with default character traits.

istream

A type basic_istream specialized on char.

typedef basic_istream<char, char_traits<char>> istream;  

Remarks

The type is a synonym for template class basic_istream, specialized for elements of type char with default character traits.

wiostream

A type basic_iostream specialized on wchar_t.

typedef basic_iostream<wchar_t, char_traits<wchar_t>> wiostream;  

Remarks

The type is a synonym for template class basic_iostream, specialized for elements of type wchar_t with default character traits.

wistream

A type basic_istream specialized on wchar_t.

typedef basic_istream<wchar_t, char_traits<wchar_t>> wistream;  

Remarks

The type is a synonym for template class basic_istream, specialized for elements of type wchar_t with default character traits.

See Also

<istream>