Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查很多有的小 cpp 文件int main(),并且一次只运行其中一个。像这样的东西 -
int main()
有没有办法在没有为每个 cpp 文件打开新项目的情况下做到这一点?
不可以。在一个项目中,您不能拥有多个main()功能。
main()
您可以将它们重命名为test1(), test2(), test3(), 并从 中一一调用main()。这就是我通常所做的。
test1()
test2()
test3()
您可以选择不编译文件。转到属性,并从构建中排除该文件。