gpt4 book ai didi

c++ - main() 函数位于与我在 C++ 中的项目同名的 .cpp 文件中

转载 作者:行者123 更新时间:2023-11-30 02:31:55 24 4
gpt4 key购买 nike

我是 C++ 编程的新手,在我学习的过程中,我看到了这个提示:

"It’s a good idea to have your main() function live in a .cpp file with the same name as your project."

我不清楚这看起来如何。有人可以帮我理解这个例子是如何工作的吗?

这个示例编程标准吗?

最佳答案

I have no clear visual idea how this look.

假设您的项目名为 MyProject,那么您应该有一个包含 main() 函数的源文件 MyProject.cpp :

#include <iostream>

int main(int argc, char* argv[]) {
std::cout << "This is MyProject" << std::endl;
}

类似上面的内容通常由一个明智的 IDE 自动生成,该 IDE 管理包含多个源文件和头文件的项目。


And is this example programing standard?

关于如何命名源文件没有任何真正的标准。

关于c++ - main() 函数位于与我在 C++ 中的项目同名的 .cpp 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37009506/

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