class test
{
public:
int firstVal;
float secondValue;
test(int x, float y) : firstVal(x), secondValue(y) {}
test() {}
}
在test(int x,float y)
的参数化构造函数中的上述代码中,我们使用:
来初始化类数据成员值。我最近才在网上遇到过这种类型的初始化,但它并没有出现在我读过的书中。我想了解这种类型的任务的优点及其局限性。是否有这种类型的任务?