提问人:Sara 提问时间:9/11/2021 更新时间:9/11/2021 访问量:92
使用默认值字段的构造函数重载
constructor overloading with default value fields
问:
如何从字段中的初始值发送构造函数中的默认参数
private readonly string name= "Test";
private readonly int id= 1;
public Demo(string name, int id)
{
this.name= name;
this.id= id;
}
public Demo(int id):this(this.name,id)
{
}
我想从字段中发送名称的默认值,我知道我可以通过设置它,但我想为什么要在构造函数中再次写入默认值
public Demo(int id):this("Test",id)
{
}
答: 暂无答案
评论
id
= "Test"
= 1
public Demo(int id):this("Test",id)
"Test"