什么是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 最新高考祝福语 简短