C#程序中的构造函数是什么?
类构造函数是类的特殊成员函数,只要我们创建该类的新对象,该构造函数便会执行。
构造函数的名称与类的名称完全相同,并且没有任何返回类型。
构造函数具有与类名称相同的名称-
class Demo {public Demo() {}
}
以下是一个例子-
示例
using System;namespace LineApplication {
class Line {
private double length; // Length of a line
public Line() {
Console.WriteLine("Object is being created");
}
public void setLength( double len ) {
length = len;
}
public double getLength() {
return length;
}
static void Main(string[] args) {
Line line = new Line();
//设置线长
line.setLength(6.0);
Console.WriteLine("Length of line : {0}", line.getLength());
Console.ReadKey();
}
}
}
输出结果
Object is being createdLength of line : 6
以上是 C#程序中的构造函数是什么? 的全部内容, 来源链接: utcz.com/z/322228.html