标签:ram 引用 rar logs 创建 bsp color 构造函数 method
静态构造函数用于初始化任何静态数据,或用于执行仅需一次的特定操作。在创建第一个实例或引用任何静态成员之前,将自动调用静态构造函数。
1 class Person 2 { 3 //static constructor 4 static Person 5 { 6 //.... 7 } 8 }
静态构造函数有以下特点:
eg:
1 namespace 静态构造函数 2 { 3 class Program 4 { 5 static void Main(string[] args) 6 { 7 Person.Student(); 8 System.Console.ReadKey(); 9 } 10 } 11 12 public class Person 13 { 14 static Person() 15 { 16 System.Console.WriteLine("I am a person class!"); 17 } 18 19 public static void Student() 20 { 21 System.Console.WriteLine("I am a student method!"); 22 } 23 } 24 }
程序运行结果:
标签:ram 引用 rar logs 创建 bsp color 构造函数 method
原文地址:http://www.cnblogs.com/eager/p/6772509.html