首页 > 技术文章 > The Common Language Runtime (CLR)

zdfffg 2019-09-06 13:05 原文

正文

印象

Figure 1-1. .NET Framework

Figure 1-2. Common Language Runtime functions

定义

The Common Language Runtime (CLR), the virtual machine component of Microsoft's .NET framework, manages the execution of .NET programs.

作用

  • Just-in-time compilation converts the managed code (compiled intermediate language code), into machine instructions which are then executed on the CPU of the computer.
  • The CLR provides additional services including memory management, type safety, exception handling, garbage collection, security and thread management.

参考

推荐阅读