我通常需要将 CHAR 或 CHAR* 转换为 TCHAR 或 TCHAR*
CHAR chDecimal = 'A';
TCHAR Decimal = '\0';
int written = MultiByteToWideChar(CP_ACP, 0, &chDecimal, 1, &Decimal, 1);
std::wcout << Decimal << endl;
getchar();
在不使用 ATL 或其他 Microsoft 库的情况下,有没有更好、最快的方法?谢谢你。