gpt4 book ai didi

c++ - Visual C++ 2010 和 native 可执行文件

转载 作者:太空狗 更新时间:2023-10-29 21:07:44 24 4
gpt4 key购买 nike

原生exe!这意味着我的程序可以在没有任何要求的情况下轻松运行?即使我使用 .net 类?

你知道我想编写一个非常轻便的程序,我不喜欢使用 C# 或任何其他 .net 编程语言,因为它们都需要 .net-framework 4.5。

试想一个 2.5 MB 的程序需要一个 +250 MB 的 .netframework。

新更新 - 12/01/2016:

我问这个问题已经快 4 年了。如您所知,Dotnet Native 已发布。这是一个有趣的功能,可以将 IL 编译成本地代码。

Compiling Apps with .NET Native

.NET Native is a precompilation technology for building and deploying Windows apps that is included with Visual Studio 2015. It automatically compiles the release version of apps that are written in managed code (C# or Visual Basic) and that target the .NET Framework and Windows 10 to native code. Typically, apps that target the .NET Framework are compiled to intermediate language (IL). At run time, the just-in-time (JIT) compiler translates the IL to native code. In contrast, .NET Native compiles Windows apps directly to native code. For developers, this means:

  • Your apps will provide the superior performance of native code.
  • You can continue to program in C# or Visual Basic.
  • You can continue to take advantage of the resources provided by the .NET Framework, including its class library, automatic memory management and garbage collection, and exception handling.

最佳答案

我最后检查过没有一个 .NET 框架超过 250 MB!是的,.NET Framework 3.5 SP1 的离线安装程序是 231MB,但它包含 .NET 2、3 和 3.5 sp1 的 x86 和 x64 版本。

你应该阅读这个http://www.smallestdotnet.com有关各种版本安装程序大小的详细信息。

现在回答你的问题:
是的,让你的客户安装一个大框架有点烦人,即使是 20-40MB 也确实很烦人。与其他 native 选项相比,.NET 的优势在于易于编程(在我看来)。

您的 native 选项是:
MFC - 您只需要安装 VS 运行时,它是 1-2MB,通常安装在较新的 pc 上。此外,您可以将您的应用程序与打包到一个 dll 中的 MFC 库一起发送,该 dll 又是 <2MB

这里的交易是你需要用 C++ 编程,库总体上是 native 库之上的一个非常薄的层。人们对 MFC 有过苛刻的评价。我刚试过。

Win32 API - 这一切都很简单,而且相当困难,您可以使用 C 或 C++,但您确实必须了解很多关于 Win32 API 以及 Windows 本身如何工作的信息( Windows 消息、hwnd 等之类的东西)这并不好玩,相信我。但在部署期间,您不需要任何外部库。

有很多更多选项,请看这里:
Native Windows Application Development Options
https://stackoverflow.com/questions/2711599/what-programming-language-should-i-use-to-create-small-native-windows-applicatio

以下是 MFC 上的一些链接,可能会有帮助:
Want to learn Windows Programming,some suggestions?
How do I decide whether to use ATL, MFC, Win32 or CLR for a new C++ project?
C++ MFC vs .NET?
https://stackoverflow.com/questions/557114/stick-with-mfc-or-go-to-net

关于c++ - Visual C++ 2010 和 native 可执行文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4530390/

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