using System; class P {     static readonly int A=B*10;     static readonly int B=10;        public static void Main(string[] args)     {         Console.WriteLine("A is {0},B is {1} ",A,B);     } }
复制代码

 

      对于上述代码,输出结果是多少?很多人会认为是A is 100,B is 10吧!其实,正确的输出结果是A is 0,B is 10。好吧,如果改成下面的话:

复制代码
using System; class P {     const int A=B*10;     const int B=10;        public static void Main(string[] args)     {         Console.WriteLine("A is {0},B is {1} ",A,B);     } }
复制代码

 

       对于上述代码,输出结果又是多少呢?难道是A is 0,B is 10?其实又错了,这次正确的输出结果是A is 100,B is 10。

       那么为什么是这样的呢?其实在上面说了,const是静态常量,所以在编译的时候就将A与B的值确定下来了(即B变量时10,而A=B*10=10*10=100),那么Main函数中的输出当然是A is 100,B is 10啦。而static readonly则是动态常量,变量的值在编译期间不予以解析,所以开始都是默认值,像A与B都是int类型,故都是0。而在程序执行到A=B*10;所以A=0*10=0,程序接着执行到B=10这句时候,才会真正的B的初值10赋给B。

posted on 2016-01-18 10:51  王庆东mas  阅读(327)  评论(0编辑  收藏  举报