C# 构造函数


构造函数

构造函数是一个特殊方法用于初始化对象。构造函数的优点是在创建类的对象时调用它。它可用于设置字段的初始值:

示例

创建一个构造函数:

// Create a Car class
class Car
{
  public string model;  // Create a field

  // Create a class constructor for the Car class
  public Car()
  {
    model = "Mustang"; // Set the initial value for model
  }

  static void Main(string[] args)
  {
    Car Ford = new Car();  // Create an object of the Car Class (this will call the constructor)
    Console.WriteLine(Ford.model);  // Print the value of model
  }
}

// Outputs "Mustang"

亲自试一试 »

请注意,构造函数名称必须匹配类名,并且它不能有返回类型(喜欢void或者int)。

另请注意,创建对象时会调用构造函数。

默认情况下,所有类都有构造函数:如果您不自己创建类构造函数,C# 会为您创建一个。但是,您将无法设置字段的初始值。

施工人员节省时间!请查看本页的最后一个示例,以真正理解原因。



构造函数参数

构造函数还可以接受参数,用于初始化字段。

下面的例子添加了一个string modelName构造函数的参数。在构造函数中我们设置modelmodelNamemodel=modelName)。当我们调用构造函数时,我们将一个参数传递给构造函数("Mustang"),这将设置的值model"Mustang":

示例

class Car
{
  public string model;

  // Create a class constructor with a parameter
  public Car(string modelName)
  {
    model = modelName;
  }

  static void Main(string[] args)
  {
    Car Ford = new Car("Mustang");
    Console.WriteLine(Ford.model);
  }
}

// Outputs "Mustang"

亲自试一试 »

您可以拥有任意数量的参数:

示例

class Car
{
  public string model;
  public string color;
  public int year;

  // Create a class constructor with multiple parameters
  public Car(string modelName, string modelColor, int modelYear)
  {
    model = modelName;
    color = modelColor;
    year = modelYear;
  }

  static void Main(string[] args)
  {
    Car Ford = new Car("Mustang", "Red", 1969);
    Console.WriteLine(Ford.color + " " + Ford.year + " " + Ford.model);
  }
}


// Outputs Red 1969 Mustang

亲自试一试 »

提示:就像其他方法一样,构造函数可以超载通过使用不同数量的参数。


构造函数节省时间

当您考虑上一章中的示例时,您会注意到构造函数非常有用,因为它们有助于减少代码量:

没有构造函数:

程序文件

class Program
{
  static void Main(string[] args)
  {
    Car Ford = new Car();
    Ford.model = "Mustang";
    Ford.color = "red";
    Ford.year = 1969;

    Car Opel = new Car();
    Opel.model = "Astra";
    Opel.color = "white";
    Opel.year = 2005;

    Console.WriteLine(Ford.model);
    Console.WriteLine(Opel.model);
  }
}

亲自试一试 »

使用构造函数:

程序文件

class Program
{
  static void Main(string[] args)
  {
    Car Ford = new Car("Mustang", "Red", 1969);
    Car Opel = new Car("Astra", "White", 2005);

    Console.WriteLine(Ford.model);
    Console.WriteLine(Opel.model);
  }
}

亲自试一试 »