使用:运算符进行赋值

时间:2015-01-23 16:41:32

标签: c++ constructor

class test
{
public:
    int firstVal;
    float secondValue;
    test(int x, float y) : firstVal(x), secondValue(y) {}
    test() {}
}

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

0 个答案:

没有答案