C#静态构造函数

C#静态构造函数用于初始化静态字段。它也可以用来执行任何只能执行一次的动作。它会在创建第一个实例或引用任何静态成员之前自动调用。
C#静态构造函数要记住的要点

  • C#静态构造函数不能有任何修饰符或参数。
  • C#静态构造函数被隐式调用。不能显式调用它。
C#静态构造函数示例让我们看一下静态构造函数的示例,该示例初始化Account类中的静态字段rateOfInterest。
using System; public class Account { public int id; public String name; public static float rateOfInterest; public Account(int id, String name) { this.id = id; this.name = name; } static Account() { rateOfInterest = 9.5f; } public void display() { Console.WriteLine(id + " " + name+" "+rateOfInterest); } } class TestEmployee{ public static void Main(string[] args) { Account a1 = new Account(101, "Sonoo"); Account a2 = new Account(102, "Mahesh"); a1.display(); a2.display(); } }

【C#静态构造函数】输出:
101 Sonoo 9.5 102 Mahesh 9.5

    推荐阅读