我可以从C+中的另一个构造函数(做构造函数链)调用构造函数吗?作为C#我习惯于运行构造函数:class Test {
public Test() {
DoSomething();
}
public Test(int count) : this() {
DoSomethingWithCount(count);
}
public Test(int count, string name) : this(count) {
DoSomethingWithName(name);
}}在C+中有办法做到这一点吗?我试着调用类名并使用“this”关键字,但都失败了。
- 3 回答
- 0 关注
- 740 浏览
添加回答
举报
0/150
提交
取消