📅  最后修改于: 2020-10-31 02:56:23             🧑  作者: Mango
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();
}
}
输出:
101 Sonoo 9.5
102 Mahesh 9.5