非托管术语和本机术语

发布于 2024-10-26 01:58:51 字数 60 浏览 0 评论 0原文

“本机”和“非托管”代码是否指同一个概念!或者它们是不同的!

是否存在非本机的非托管代码!

Does "native" and "unmanaged" code refer to the same concept! or they are different!

Is there an unmanaged code which is not native!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

开始看清了 2024-11-02 01:58:51

C++/CLI 编译器可以在三种模式下运行:

  • 将标准 C++“本机类型”编译为机器代码(非托管)
  • 将标准 C++“本机类型”编译为 MSIL(托管)
  • 将托管类型编译为 MSIL(托管)

如您所见,可以在托管环境中编译和执行标准 ISO C++ 代码。

There are three modes the C++/CLI compiler can operate in:

  • Compiling standard C++ "native types" to machine code (unmanaged)
  • Compiling standard C++ "native types" to MSIL (managed)
  • Compiling managed types to MSIL (managed)

As you can see, it is possible for standard ISO C++ code to be compiled and executed in the managed environment.

寂寞清仓 2024-11-02 01:58:51

非托管代码是指本机代码。这意味着它不受 .NET Framework 管理。

Unmanaged code refers to native code. It means that it's not managed by the .NET Framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文