gpt4 book ai didi

c++ - 了解 Visual C++ 控制台项目中的 _tmain

转载 作者:可可西里 更新时间:2023-11-01 15:25:15 29 4
gpt4 key购买 nike

在 Visual C++ 2008 Express 中,当我创建一个新的控制台项目时,我得到以下程序作为开始:

//Explodey.cpp : Defines the entry point for the console application.

//

#include "stdafx.h"

int _tmain(int argc,_TCHAR* argv[])
{
return 0;
}

我有几个问题:

  • 为什么主函数是_tmain而不是main?

  • 我认为 argv 参数应该是 char* argv[] 而不是 _TCHAR

  • stdafx.h 是什么?

这真的不像我习惯的 C++。

最佳答案

在这里查看 _tmain...等

What is the difference between _tmain() and main() in C++?

stdafx.h 是 Windows 应用程序的预编译头文件(可选)。更多信息:

http://en.wikipedia.org/wiki/Precompiled_header

关于c++ - 了解 Visual C++ 控制台项目中的 _tmain,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10451529/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com