หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
The <ostream> header provides the following typedefs:
ostream
Creates a type from basic_ostream that is specialized on char and char_traits specialized on char.
typedef basic_ostream<char, char_traits<char>> ostream;
Remarks
The type is a synonym for class template basic_ostream, specialized for elements of type char with default character traits.
wostream
Creates a type from basic_ostream that is specialized on wchar_t and char_traits specialized on wchar_t.
typedef basic_ostream<wchar_t, char_traits<wchar_t>> wostream;
Remarks
The type is a synonym for class template basic_ostream, specialized for elements of type wchar_t with default character traits.