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

Constructors with default parameters in Header files(头文件中具有默认参数的构造函数)

本文介绍了头文件中具有默认参数的构造函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个这样的 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.

这篇关于头文件中具有默认参数的构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:头文件中具有默认参数的构造函数

基础教程推荐