static, readonly, const
- static
- Use the static modifier to declare a static member, which belongs to the type itself rather than to a specific object. The static modifier
can be used with classes, fields, methods, properties, operators, events, and constructors, but it cannot be used with indexers, destructors, or types other than classes. - A constant or type declaration is implicitly a static member.
- A static member cannot be referenced through an instance. Instead, it is referenced through the type name.
- While an instance of a class contains a separate copy of all instance fields of the class, there is only one copy of each static field.
- It is not possible to use this to reference static methods or property accessors.
- If the static keyword is applied to a class, all the members of the class must be static.
- Classes and static classes may have static constructors. Static constructors are called at some point between when the program starts and the class is instantiated.
- A static class is basically the same as a non-static class, but there is one difference: a static class cannot be
instantiated. In other words, you cannot use the new keyword to create a variable of the class type. Because
there is no instance variable, you access the members of a static class by using the class name itself. - A static class can be used as a convenient container for sets of methods that just operate on input parameters and do not have to get or set any internal instance fields.
- As is the case with all class types, the type information for a static class is loaded by the .NET Framework common language runtime (CLR) when the program that references the class is loaded. The program
cannot specify exactly when the class is loaded. However, it is guaranteed to be loaded and to have its fields initialized and its static constructor called before the class is referenced for the first time in your program. A
static constructor is only called one time, and a static class remains in memory for the lifetime of the application domain in which your program resides. - static class: Contains only static members, Cannot be instantiated, Is sealed, Cannot contain Instance Constructors.
- Creating a static class is therefore basically the same as creating a class that contains only static members and a private constructor. A private constructor prevents the class from
being instantiated. The advantage of using a static class is that the compiler can check to make sure that no instance members are accidentally added. The compiler will guarantee
that instances of this class cannot be created. - Static classes are sealed and therefore cannot be inherited. They cannot inherit from any class except Object. Static
classes cannot contain an instance constructor; however, they can contain a static constructor. Non-static classes should also define a static constructor if the class contains static members that require non-trivial
initialization. - A non-static class can contain static methods, fields, properties, or events.
- The static member is always accessed by the class name, not the instance name. Static methods and properties cannot access non-static
fields and events in their containing type, and they cannot access an instance variable of any object unless it is explicitly passed in a method parameter. - It is more typical to declare a non-static class with some static members, than to declare an entire class as static.
- Two common uses of static fields are to keep a count of the number of objects that have been instantiated, or to store a value that must be shared among all instances.
- Static methods can be overloaded but not overridden, because they belong to the class, and not to any instance of the class.
- Although a field cannot be declared as static const, a const field
is essentially static in its behavior. It belongs to the type, not to instances of the type. - Static members are initialized before the static member is accessed for the first time and before the static constructor, if there
is one, is called. C# does not support static local variables (variables that are declared in method scope).
- Use the static modifier to declare a static member, which belongs to the type itself rather than to a specific object. The static modifier
- const
- The static modifier is not allowed in a constant declaration.
- A const field can only be initialized at the declaration of the field. A readonly field can be initialized
either at the declaration or in a constructor. Therefore,readonly fields can have different values depending on the constructor used. Also,
although a const field is a compile-time constant, the readonly field can be used for run-time constants, as in this line: public static readonly uint l1 = (uint)DateTime.Now.Ticks;
public static class MyStaticClass : MyClass // error CS0713: Static classes must derive from object.
{
static MyStaticClass()
{
Console.WriteLine("MyStaticClass constructor");
}
public static void Test() { Console.WriteLine("MyStaticClass:Test"); }
} public class Derived : MyStaticClass { } //'Derived': cannot derive from static class 'MyStaticClass'
static, readonly, const的更多相关文章
- 读书笔记:const和readonly、static readonly 那些事
C#中表示不变的量(常量)的两种形式:const 和readonly const 是静态常量 readonly 是动态常量 严格的来讲:const 应该称为常量 而readonly 则应称为只读变量. ...
- 到底是 const 还是 static readonly
真的一样? const 和 static readonly 常在程序中用来声明常量,调用方法也没有什么不同,他们真的一样吗?我们可以做个试验. 程序集内的常量 现在我们建立一个程序,里面有一个MyCl ...
- 【转】const和static readonly
我们都知道,const和static readonly的确很像:通过类名而不是对象名进行访问,在程序中只读等等.在多数情况下可以混用.二者本质的区别在于,const的值是在编译期间确定的,因此只能在声 ...
- (C#) What is the difference between "const" and "static readonly" ?
const int a must be initialized initialization must be at compile time readonly int a can use defaul ...
- const 还是 static readonly
到底是 const 还是 static readonly 真的一样? const 和 static readonly 常在程序中用来声明常量,调用方法也没有什么不同,他们真的一样吗?我们可以做个试 ...
- Unity C# const与static readonly的区别与联系
using System; namespace Test { class MainClass { //懒人写法的单例 class Weapon { public static readonly Wea ...
- const和static readonly的区别
我们都知道,const和static readonly的确很像:通过类名而不是对象名进行访问,在程序中只读等等. 在多数情况下可以混用.二者本质的区别在于,const的值是在编译期间确定的,因此只能在 ...
- const和static readonly 区别
const的值是在编译期间确定的,因此只能在声明时通过常量表达式指定其值. 而static readonly是在运行时计算出其值的,所以还可以通过静态构造函数来赋值. static readonly ...
- C# const和static readonly区别
[转]C# const和static readonly区别 以前只是知道Const和static readonlyd的区别在于const的值是在编译期间确定的,而static readonly是在运行 ...
随机推荐
- Android事件分发机制(二)30分钟弄明白Touch事件分发机制
Touch事件分发中只有两个主角:ViewGroup和View.Activity的Touch事件事实上是调用它内部的ViewGroup的Touch事件,可以直接当成ViewGroup处理. View在 ...
- VBS数组
定义一个数组: dim a(3).这里要注意在VBS里面数组不像其他的例如C,C#,JAVA等数组用[]作为数组标志.VBS采用的是().还需要注意的是,这里定义的数组包含a(0),a(1),a(2) ...
- uva1587BOX
给定6个矩形的长和宽wi和hi(1≤wi,hi≤1000),判断它们能否构成长方体的6个面. 思路是首先排序,每个矩形都是x<y,就是短边x,长边y,然后对六个矩形进行二级排序,排序以后构成长方 ...
- HTML图像映射
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- win7出现无法连接到代理服务器的错误,不能上网的问题的解决
今天晚上突然停电,等我打开电脑发现不然上网,用google浏览器出现这个错误: 用IE诊断错误如下: 说是不能连到代理服务器,但是我没有连接到代理服务器啊,但是我的QQ能登,就是不能用浏览器上网,经过 ...
- React子组件与父组件传值
一 子组件向父组件传值 //子组件var Child = React.createClass({ render: function(){ return ( <div> 请输入邮箱:< ...
- 【229】Raster Calculator - 栅格计算器
参考:分段函数进行复制,利用语句 参考:ArcGIS栅格计算器 - CSDN 参考:ArcGIS栅格计算器con条件函数使用 参考:ArcGIS栅格计算器 - 电脑玩物 ("lyr" ...
- 生产者消费者模式--阻塞队列--LOCK,Condition--线程池
1.阻塞队列:http://www.cnblogs.com/dolphin0520/p/3932906.html 2.Condition 生产者消费者实现 :http://www.cnblogs.co ...
- 万象客户端设置服务端ip保存在注册表的位置
HKEY_LOCAL_MACHINE\SOFTWARE\Sicent\wx2004Clt 这个注册表被保护了,不能修改和删除,但可以在安全模式操作.
- [珠玑之椟]浅谈代码正确性:循环不变式、断言、debug
这个主题和代码的实际写作有关,而且内容和用法相互交织,以下只是对于其内容的一个划分.<编程珠玑>上只用了两个章节20页左右的篇幅介绍,如果希望能获得更多的实例和技巧,我比较推崇<程序 ...