找回密码
 立即注册

QQ登录

只需一步,快速开始

graper

高级会员

45

主题

63

帖子

1348

积分

高级会员

积分
1348

活字格认证

graper
高级会员   /  发表于:2009-12-11 16:25  /   查看:6068  /  回复:0
Post by "AaronLu", 04-02-2007, 10:07
-----------------------------------------------------


以下的static readonly 是否可以替换为const?

  1. 1. static readonly MyClass myins = new MyClass();
  2. 2. static readonly MyClass myins = null;
  3. 3. static readonly A = B * 20;
  4.    static readonly B = 10;
  5. 4. static readonly int [] constIntArray = new int[] {1, 2, 3};
  6. 5. void SomeFunction()
  7.    {
  8.       const int a = 10;
  9.       ...
  10.    }
复制代码
我们都知道,const和static readonly的确很像:通过类名而不是对象名进行访问,在程序中只读等等。在多数情况下可以混用。二者本质的区别在于:
* const的值是在编译期间确定的,因此只能在声明时通过常量表达式指定其值。
* static readonly是在运行时计算出其值的, 只有两种途径为其赋值,在声明该变量的时候或在默认的静态构造函数里面为其赋值。实际上这两种方法最后生成的IL代码是相同的(都是在静态构造函数中赋值)。

明白了这个本质区别,我们就不难看出下面的语句中static readonly和const能否互换了:

  1. 1. static readonly MyClass myins = new MyClass();
  2. 2. static readonly MyClass myins = null;
  3. 3. static readonly A = B * 20;
  4.    static readonly B = 10;
  5. 4. static readonly int [] constIntArray = new int[] {1, 2, 3};
  6. 5. void SomeFunction()
  7.    {
  8.       const int a = 10;
  9.       ...
  10.    }
复制代码
1:不可以换成const。new操作符是需要执行构造函数的,所以无法在编译期间确定
2:可以换成const。我们也看到,Reference类型的常量(除了String)只能是Null。
3:可以换成const。我们可以在编译期间很明确的说,A等于200。
4:不可以换成const。道理和1是一样的,虽然看起来1,2,3的数组的确就是一个常量。
5:不可以换成readonly,readonly只能用来修饰类的field,不能修饰局部变量,也不能修饰property等其他类成员。

因此,对于那些本质上应该是常量,但是却无法使用const来声明的地方,可以使用static readonly。例如C#规范中给出的例子:

  1. public class Color
  2. {
  3.     public static readonly Color Black = new Color(0, 0, 0);
  4.     public static readonly Color White = new Color(255, 255, 255);
  5.     public static readonly Color Red = new Color(255, 0, 0);
  6.     public static readonly Color Green = new Color(0, 255, 0);
  7.     public static readonly Color Blue = new Color(0, 0, 255);

  8.     private byte red, green, blue;

  9.     public Color(byte r, byte g, byte b)
  10.     {
  11.         red = r;
  12.         green = g;
  13.         blue = b;
  14.     }
  15. }
复制代码
static readonly需要注意的一个问题是,对于一个static readonly的Reference类型,只是被限定不能进行赋值(写)操作而已。而对其成员的读写仍然是不受限制的。
public static readonly MyClass myins = new MyClass();

myins.SomeProperty = 10;  //正常
myins = new MyClass();    //出错,该对象是只读的

但是,如果上例中的MyClass不是一个class而是一个struct,那么后面的两个语句就都会出错。



Reply by "KevinShan", 04-02-2007, 10:41
-----------------------------------------------------

顺便说一下, static readonly的field是可以被反射修改的。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Reflection;

  5. namespace ConsoleApplication1
  6. {
  7.     class Program
  8.     {
  9.       
  10.         static void Main(string[] args)
  11.         {
  12.             Console.WriteLine(A.field1);
  13.             FieldInfo fi= typeof(A).GetField("field1");
  14.             if (fi != null)
  15.             {
  16.                 fi.SetValue(null, "456");
  17.             }
  18.             Console.WriteLine(A.field1);
  19.             Console.ReadKey();
  20.         }

  21.         class A
  22.         {
  23.             public static readonly string field1 = "123";
  24.         }

  25.     }
  26. }
复制代码
输出:
123
456

0 个回复

您需要登录后才可以回帖 登录 | 立即注册
返回顶部