什么是C#程序中的参数化构造函数?
在构造函数中,您还可以添加参数。这种构造函数称为参数化构造函数。此技术可帮助您在创建对象时为它分配初始值。
以下是一个例子-
// class class Demo
具有参数等级的参数化构造函数-
public Demo(int rank) {
Console.WriteLine("RANK = {0}", rank);
}这是显示如何在C#中使用参数化构造函数的完整示例-
示例
using System;
namespace Demo {
class Line {
private double length; // Length of a line
public Line(double len) { //Parameterized constructor
Console.WriteLine("Object is being created, length = {0}", len);
length = len;
}
public void setLength( double len ) {
length = len;
}
public double getLength() {
return length;
}
static void Main(string[] args) {
Line line = new Line(10.0);
Console.WriteLine("Length of line : {0}", line.getLength());
//设置线长
line.setLength(6.0);
Console.WriteLine("Length of line : {0}", line.getLength());
Console.ReadKey();
}
}
}输出结果
Object is being created, length = 10 Length of line : 10 Length of line : 6
热门推荐
10 新人红包祝福语简短精辟
11 幼师给毕业祝福语简短
12 生日高考祝福语妹妹简短
13 下飞机祝福语简短英文
14 元宵发客户祝福语简短
15 爸妈金婚文案祝福语简短
16 新郎朋友红包祝福语简短
17 虎年五一祝福语大全简短
18 出阁宴祝福语姐姐简短