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);     } }
【.Net姿势随记】const 与 readonly 初始化姿势

 

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

【.Net姿势随记】const 与 readonly 初始化姿势
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);     } }
【.Net姿势随记】const 与 readonly 初始化姿势

 

       对于上述代码,输出结果又是多少呢?难道是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。

相关文章:

  • 2021-04-26
  • 2021-10-21
  • 2021-06-09
  • 2021-12-04
  • 2021-08-07
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-19
  • 2021-04-09
  • 2021-10-27
  • 2021-09-23
  • 2021-11-14
  • 2021-11-22
相关资源
相似解决方案