.NET CLR 上下文中的运行时意味着什么?
在 .NET 公共语言运行时上下文中,“运行时”意味着什么?
What does "Runtime" mean in the context of the .NET Common Language Runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 .NET 公共语言运行时上下文中,“运行时”意味着什么?
What does "Runtime" mean in the context of the .NET Common Language Runtime?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
该上下文中的运行时是一个执行平台。即它定义了应用程序如何加载和执行。它提供了平台上所有应用程序通用的一组服务,例如内存管理和中间代码的即时编译。
The runtime in that context is an execution platform. I.e. it defines how applications are loaded and executed. It provides a set of services common to all applications on the platform, e.g. memory management and just-in-time compilation of intermediate code.
这是“运行时系统”的毫无意义的缩写,现在它似乎意味着解释器,尽管它最初并不是这样的。当我第一次遇到这个术语时,它只是指一个共享运行时库,可能包含也可能不包含解释器。
It's a pointless abbreviation for 'runtime system', which nowadays appears to mean an interpreter, although it didn't start out that way. When I first encountered the term, it just meant a shared runtime library, that might or might not include an interpreter.
这是一张很好的解释图片:
http://en.wikipedia.org/wiki/Common_Language_Runtime
您用不同的语言编写代码,它被编译为 CIL(中间语言)。然后CLR将中间语言转换为本机代码。它发生在运行时。
Here is a nice explaining picture:
http://en.wikipedia.org/wiki/Common_Language_Runtime
You write the code in different languages, it's compiled to CIL (Intermediate Language). Then CLR converts Intermediate Language into Native Code. And it happens at runtime.