标签:style blog color 使用 strong re
1 class Age 2 { 3 //第一个可赋值的地方 4 //private readonly int _year = 20; 5 readonly int _year; 6 7 Age(int year) 8 { 9 //第二个可赋值的地方 10 _year = year; 11 } 12 void ChangeYear() 13 { 14 //除了上面两除,其他方式都不能改变它的值 15 //编译不能通过 16 _year = 1967; 17 } 18 }
1 class Age 2 { 3 //唯一可赋值的地方 4 const int _year = 20; 5 6 Age(int year) 7 { 8 //编译不能通过 9 _year = year; 10 } 11 void ChangeYear() 12 { 13 //编译不能通过 14 _year = 1967; 15 } 16 }
readonly 与 const,布布扣,bubuko.com
标签:style blog color 使用 strong re
原文地址:http://www.cnblogs.com/David-Huang/p/3856448.html