手机
当前位置:查字典教程网 >编程开发 >C语言 >浅析_tmain()与main()的区别
浅析_tmain()与main()的区别
摘要:有这么两行#include#include我们可以在头文件里找到_tmain的宏定义#define_tmainmain所以,经过预编译以后,...

有这么两行

#include <stdio.h>

#include <tchar.h>

我们可以在头文件<tchar.h>里找到_tmain的宏定义

#define _tmain main

所以,经过预编译以后, _tmain就变成main了

main()是标准C++的函数入口。标准C++的程序入口点函数,默认字符编码格式ANSI

函数签名为:

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[])会被翻译成

int wmain(int argc, wchar_t *argv[])

当你程序当前的字符集为ANSI时,int _tmain(int argc, TCHAR *argv[])会被翻译成

int main(int argc, char *argv[])

【浅析_tmain()与main()的区别】相关文章:

static_cast,dynamic_cast,reinterpret_cast和const_cast的区别详解

short与int转换的小例子

exit和atexit的区别详细解析

C++中delete和delete[]的区别说明

浅析C/C++中被人误解的SIZEOF

基于Sizeof与Strlen的区别以及联系的使用详解

深入解析函数指针与返回函数的指针

浅析string 与char* char[]之间的转换

深入解析C++ STL中的常用容器

浅析C语言中的sizeof

精品推荐
分类导航