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(); // set line length line.setLength(6.0); Console.WriteLine("Length of line : {0}", line.getLength()); Console.ReadKey(); } } }
输出
Object is being created Length of line : 6
广告