今天图老师小编要跟大家分享浅析_tmain()与main()的区别,精心挑选的过程简单易学,喜欢的朋友一起来学习吧!
【 tulaoshi.com - 编程语言 】
有这么两行
#include stdio.h
#include tchar.h
我们可以在头文件tchar.h里找到_tmain的宏定义
#define _tmain main
所以,经过预编译以后, _tmain就变成main了
main()是标准C++的函数入口。标准C++的程序入口点函数,默认字符编码格式ANSI
函数签名为:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)int main();
int main(int argc, char* argv[]);
_tmain()是windows提供的对unicode字符集和ANSI字符集进行自动转换用的程序入口点函数。
函数签名为:
int _tmain(int argc, TCHAR *argv[])
当你程序当前的字符集为unicode时,int _tmain(int argc, TCHAR *argv[])会被翻译成
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)int wmain(int argc, wchar_t *argv[])
当你程序当前的字符集为ANSI时,int _tmain(int argc, TCHAR *argv[])会被翻译成
int main(int argc, char *argv[])
来源:http://www.tulaoshi.com/n/20160219/1596703.html
看过《浅析_tmain()与main()的区别》的人还看了以下文章 更多>>