wcout
Specifies the wcout global stream.
extern wostream wcout;
반환 값
wostream 개체
설명
The object controls insertions to the standard output as a wide stream.
예제
See cerr for an example of using wcout.
CString instances in a wcout statement must be cast to const wchar_t*, as shown in the following example.
CString cs("meow");
wcout << (const wchar_t*) cs << endl;
자세한 내용은 기본 CString 작업을 참조하십시오.
요구 사항
Header: <iostream>
네임스페이스: std