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.
有什么方法可以隐藏WinMain()类中的函数吗?谢谢你。
WinMain()
不,没有。一个更好的问题是“你为什么想要”?在 Java 或 C# 中,主函数是静态类成员,不是因为它更好或更干净,而是因为该语言不允许非成员函数。在 C++ 中,它们是被允许的,在很多情况下甚至被鼓励。
将 main 函数(程序的入口点)置于“外部”更有意义。它从一个基本上空的环境开始,然后在调用实际应用程序逻辑之前设置任何需要设置的内容。