C# Readonly 关键字应用在 字典 或 集合

class Program
{
  static void Main(string[] args)
  {
    tests ts = new tests();
    ts.wrt();
    Console.WriteLine(ts.lst.Count);
    Console.Read();
  }
}

class tests
{
  public readonly int a = 5;
  public readonly Dictionary<string, string> dic=new Dictionary<string,string>();
  public readonly List<string> lst=new List<string>();
  public void wrt()
  {
    a = 10;
    dic["a"] = "";
    lst.Add("a");
  }
}

结果是 1 , 这就是说明 , 即使把 字典 或 集合对象 声明为 readonly , 也是可以对其插入数据的

posted on 2012-02-19 23:35  多个马甲  阅读(441)  评论(0编辑  收藏  举报