有这么两行
#include stdio.h
#include tchar.h
我们可以在头文件tchar.h里找到_tmain的宏定义
#define _tmain main
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)所以,经过预编译以后, _tmain就变成main了
main()是标准C++的函数入口。标准C++的程序入口点函数,默认字符编码格式ANSI
函数签名为:
int main();
int main(int argc, char* argv[]);
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)_tmain()是windows提供的对unicode字符集和ANSI字符集进行自动转换用的程序入口点函数。
函数签名为:
int _tmain(int argc, TCHAR *argv[])
当你程序当前的字符集为unicode时,int _tmain(int argc, TCHAR *argv[])会被翻译成
int wmain(int argc, wchar_t *argv[])
当你程序当前的字符集为ANSI时,int _tmain(int argc, TCHAR *argv[])会被翻译成
int main(int argc, char *argv[])