wstring a2; a1 = a2.c_str(); (3)把ANSI字符串转换成Unicode字符集,能够用例如以下函数 wstring ANSIToUnicode(string str) { int lengthW = MultiByteToWideChar(CP_ACP,0,str.c_str(),-1,NULL,NULL); wchar_t* pUnicode = new wchar_t [lengthW*sizeof(wchar_t)]; memset(pUnicode,0,lengthW*...
文本输出函数TextOut(HDC hdc, int X, int Y,LPCTSTR lpstring, int nCount)第四个参数nCount记录的是( ) A、lpstring中的字符串的字节数 B、字符串的长度 C、lpstring的长度 D、lpstring串的循环次数