作为一名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'关键字,但都失败了。