zoukankan      html  css  js  c++  java
  • C#

    

    The Common Language Runtime (CLR), the virtual-machine component of Microsoft's .NET framework, manages the execution of .NET programs. A process known as just-in-time compilation converts compiled code into machine instructions which the computer's CPU then executes. The CLR provides additional services including memory management, type safety and exception handling. All programs written for the .NET framework, regardless of programming language, are executed by the CLR. It provides exception handling, garbage collection, security and thread management. All versions of the .NET framework include CLR.

    CLR implements the Virtual Execution System (VES) as defined in the Common Language Infrastructure (CLI) standard, initially developed by Microsoft itself. A public standard defines the Common Language Infrastructure specification.

    The runtime provides the following benefits:

    • Performance improvements.
    • The ability to easily use components developed in other languages.
    • Extensible types provided by a class library.
    • Language features such as inheritance, interfaces, and overloading for object-oriented programming.
    • Support for explicit free threading that allows creation of multithreaded, scalable applications.
    • Support for structured exception handling.
    • Support for custom attributes.
    • Garbage collection.
    • Use of delegates instead of function pointers for increased type safety and security.
  • 相关阅读:
    python操作adb代码
    android sdcard 权限管理策略研究
    glom模块的使用(二)
    爬虫错误汇总
    微博展开全文获取
    数据清洗之微博内容清洗
    Esxi5-管理平台vcenter5.0_数据库迁移流程
    migrating-vcenter-database-express-to-sql-2008-r2
    Centos生成SSL证书的步骤
    找到一篇关于2.4/5G信道的新介绍
  • 原文地址:https://www.cnblogs.com/mthoutai/p/6849013.html
Copyright © 2011-2022 走看看