可以利用W2A函数将将_TCHAR *转换为char *,举例:
#include "stdafx.h"
#include <stdlib.h>
#include <atlconv.h>
int _tmain(int argc, _TCHAR* argv[])
{
_TCHAR * tchBuffer = L"12345";
USES_CONVERSION;
char *szBuffer = W2A(tchBuffer);
int nNumber = atoi(szBuffer);
printf("nNumber:%d", nNumber);
return 0;
}
利用以上例子,可将保存着数字的_TCHAR *字符串,转换为数字。