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

2022-01-11 00:00:00 constructor header c++

我有一个这样的 cpp 文件:

I have a cpp file like this:

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

如何在 Foo.h 中引用这个?

How do I refer to this in Foo.h?

推荐答案

.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) { }

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

You only add defaults to declaration, not implementation.

相关文章