zoukankan      html  css  js  c++  java
  • const 和 readonly 的区别

    来个例子,体会更深。

    ========== =============

    public class Class1
    {
    public const string a = 'const';  //不可修改,一直固定死的
    public readonly string aa = "readonly"; 
    public Class1(string s) //readonly  在实例化的时候可赋值, 在各实例中为只读
    {
    aa = s;
    }
    }
    
    
    
    
    
    以上部分,如果
    public readonly string aa = "readonly"; 加上修饰符static ,那么他和const相差不大,都是类访问的只读变量。
    
    

      


     

  • 相关阅读:
    MySQL-基础知识整理
    设计模式-适配器模式
    MySQL
    MySQL-5.7 填坑
    MySQL
    Oracle
    SQL 注入
    Apache JMeter
    AppScan
    DNS 搜索
  • 原文地址:https://www.cnblogs.com/akak123/p/2277544.html
Copyright © 2011-2022 走看看