我可以从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”关键字,但都失败了。
湖上湖
相关分类