.NET CLR 上下文中的运行时意味着什么?

发布于 2024-10-06 10:06:08 字数 71 浏览 1 评论 0原文

在 .NET 公共语言运行时上下文中,“运行时”意味着什么?

What does "Runtime" mean in the context of the .NET Common Language Runtime?

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

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

发布评论

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

评论(3

不念旧人 2024-10-13 10:06:08

该上下文中的运行时是一个执行平台。即它定义了应用程序如何加载和执行。它提供了平台上所有应用程序通用的一组服务,例如内存管理和中间代码的即时编译。

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.

兲鉂ぱ嘚淚 2024-10-13 10:06:08

这是“运行时系统”的毫无意义的缩写,现在它似乎意味着解释器,尽管它最初并不是这样的。当我第一次遇到这个术语时,它只是指一个共享运行时库,可能包含也可能不包含解释器。

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.

孤单情人 2024-10-13 10:06:08

这是一张很好的解释图片:
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.

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