Questions tagged «wchar-t»

12
TCHAR是否仍然相关?
我是Windows编程的新手,在阅读Petzold的书后,我感到奇怪: 使用TCHAR类型和_T()函数声明字符串是否仍然是一种好习惯,或者是否应该在新代码中仅使用wchar_tandL""字符串? 我将仅针对Windows 2000及更高版本,并且从一开始我的代码就是i18n。
87 c++  c  windows  unicode  wchar-t 

7
如何将wchar_t值打印到控制台?
例: #include <iostream> using namespace std; int main() { wchar_t en[] = L"Hello"; wchar_t ru[] = L"Привет"; //Russian language cout << ru << endl << en; return 0; } 此代码仅打印地址的十六进制值。如何打印wchar_t字符串?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.