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.
有没有办法在项目中有多个 main 并且每个 main 都可以执行?
如果你想多线程你的应用程序,你应该看看线程库。否则,您将无法拥有多个主要功能。编译器将 main 函数存储为要执行的第一组指令。如果只运行一个线程,则不能同时执行两组相同的指令。你到底想做什么?