1

what is the difference between a static variable inside a static class and a static variable inside a non static class?

ex:

public static class GT
{
   public static readonly string x;
}


public class GT
{
   public static readonly string x;
}
4

1 回答 1

3

当您谈论类中的实际变量时,没有区别。静态类中的静态变量与非静态类中的静态变量相同。

另一方面..如果您谈论的是类本身,那么静态类不能包含实例变量或方法..这没有意义..因为您不能自己实例化静态类的实例。

于 2013-10-03T05:21:05.620 回答