构造函数在头文件中具有默认参数

时间:2009-09-17 17:27:20

标签: c++ constructor header

我有一个像这样的cpp文件:

#include Foo.h;
Foo::Foo(int a, int b=0)
{
    this->x = a;
    this->y = b;
}

我如何在Foo.h中引用它?

4 个答案:

答案 0 :(得分:57)

·H:

class Foo {
    int x, y;
    Foo(int a, int b=0);
};

.CC:

#include "foo.h"

Foo::Foo(int a,int b)
    : x(a), y(b) { }

您只需在声明中添加默认值,而不是实现。

答案 1 :(得分:9)

头文件应该有默认参数,cpp不应该。

<强> test.h:

class Test
{
public:
    Test(int a, int b = 0);
    int m_a, m_b;
}

<强> TEST.CPP:

Test::Test(int a, int b)
  : m_a(a), m_b(b)
{

}

<强> main.cpp中:

#include "test.h"

int main(int argc, char**argv)
{
  Test t1(3, 0);
  Test t2(3);
  //....t1 and t2 are the same....

  return 0;
}

答案 2 :(得分:8)

默认参数需要写在头文件中。

Foo(int a, int b = 0);

在cpp中,在定义方法时,您无法指定默认参数。但是,我在注释代码中保留了默认值,因此很容易记住。

Foo::Foo(int a, int b /* = 0 */)

答案 3 :(得分:5)

您需要将默认参数放在标题中,而不是放在.cpp文件中。