非托管术语和本机术语
“本机”和“非托管”代码是否指同一个概念!或者它们是不同的!
是否存在非本机的非托管代码!
Does "native" and "unmanaged" code refer to the same concept! or they are different!
Is there an unmanaged code which is not native!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
C++/CLI 编译器可以在三种模式下运行:
如您所见,可以在托管环境中编译和执行标准 ISO C++ 代码。
There are three modes the C++/CLI compiler can operate in:
As you can see, it is possible for standard ISO C++ code to be compiled and executed in the managed environment.
非托管代码是指本机代码。这意味着它不受 .NET Framework 管理。
Unmanaged code refers to native code. It means that it's not managed by the .NET Framework.