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.
所以我知道 python 语言有 .py 和 .pyw 扩展名,区别是 .pyw 运行静默并且没有弹出窗口,C++ 中有这样的东西吗?如果没有,有什么东西可以让我的代码静默运行吗?有另一种启动方式吗?
没有一个。在 Windows 上,只需实现WinMain()作为入口点而不是main(),并更改链接器选项以创建 GUI 应用程序而不是控制台应用程序。在 *nix 上不需要更改。
WinMain()
main()