看這個網址解決的:https://blog.csdn.net/weixin_34023982/article/details/87380020函數
能夠利用W2A函數將將_TCHAR *轉換爲char *,舉例:.net
#include "stdafx.h"
#include <stdlib.h>
#include <atlconv.h> //須要加入的 1
int _tmain(int argc, _TCHAR* argv[])
{
_TCHAR * tchBuffer = L"12345";
USES_CONVERSION; //這兩句也要加入2
char *szBuffer = W2A(tchBuffer);//這兩句也要加入3
int nNumber = atoi(szBuffer);
printf("nNumber:%d", nNumber);
return 0;
}blog
找到本身程序報錯的地方,將上面三句加入便可運行gc