下面给出的代码中的C ++构造函数定义差异

时间:2017-01-06 16:00:20

标签: c++ class-constructors

我是C ++的新手。学习构造函数。请参阅下面提到的两个代码,并提供原因,为什么代码2不起作用。感谢。

代码1:

#include <iostream>
using namespace std;

class Box
{
    int x;
public:
    Box::Box(int a=0)
    {
        x = a;
    }
    void print();
};

void Box::print()
{
    cout << "x=" << x << endl;
}

int main()
{
    Box x(100);
    x.print();
}

代码2:

#include <iostream>
using namespace std;

class Box
{
    int x;
public:
    Box(int a=0);
    void print();
};

Box::Box(int a=0)
{
    x = a;
}

void Box::print()
{
    cout << "x=" << x << endl;
}

int main()
{
    Box x(100);
    x.print();
}

为什么代码1正在运行但代码2无效?

1 个答案:

答案 0 :(得分:5)

由于某些奇怪的原因,您不能重复参数的默认值:

class Box
{
    int x;
public:
    Box(int a=0);
//------------^  given here
    void print();
};

Box::Box(int a=0)
//------------^^  must not be repeated (even if same value)
{
    x = a;
}