C \ # 상수 정의 하 는 두 가지 방법

2425 단어 C#백 엔 드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _0223_         
{
    class Program
    {
        static void Main(string[] args)
        {
            // C#           ,        (Compile-time constant),
            //         (Runtime constant)。   “const”   ,   
            //“readonly”   。
            //      (Compile - time constant),        :
            //public const int MAX_VALUE = 10;
            //           ,              (  :    
            //    ,      ,          )。
            //public static const int MAX_VALUE = 10;
            // const     ,              ,          
            //      const     ,                  。 
            // ,               ,           ,  :
            //int nValue = MAX_VALUE;
            //       ,                   。
            //int nValue = 10;
            //  ,  const        ,         。  ,     
            //     ,             new   ,     struct  
            //          const   。
            //   const  , readonly          ,        :
            //public readonly int MAX_VALUE = 10;
            //         ,      readonly          ,   
            //              。  ,readonly            
            //          ,               。  readonly 
            //            ,    const             ,
            //   readonly          ,    readonly        
            //  。
            //          ,    const     readonly   ,    
            //     ,     const   。      ,         const
            //      bug。        DLL           ,     
            //         ,          ,    ,         
            //    ,             。         ,      bug。
            //              ,          ,                  。
            //  :             ,  :
            //public const int MAX_VALUE = 10;
            //                  ,              ,
            //  10     ,          ,  10 。
            //               ,  :
            //public const int MAX_VALUE = 15;
            //                           ,      
            //                 10,        15。     
            //     ,        bug。         ,       
            //             ,           。
            //     const           bug,  readonly       
            //    。  readonly            ,          
            //           ,      bug。
            //   ,     readonly   const     。
        }
    }
}

좋은 웹페이지 즐겨찾기