我回去学习C ++并读了一些大学的老课程,现在我正在学习参数多态性以及创建自己的名称空间。 练习表明,我必须创建一个名为“ Federation”的命名空间,该命名空间具有一个名为“ Ship”的类,该类接受值和一个永不更改的默认值。 在联合名称空间中,还有一个“ Starfleet”名称空间,其中我们也有一个“ Ship”类,唯一的区别是用户可以指定之前指定的默认值。
代码如下:
Federation.hpp
#include <iostream>
#include <string>
#include <cstring>
namespace Federation
{
namespace Starfleet
{
class Ship
{
public:
Ship(int length, int width, std::string name, short maxWarp);
~Ship();
private:
int _length;
int _width;
std::string _name;
short _maxWarp;
};
};
class Ship
{
public:
Ship(int length, int width, std::string name);
~Ship();
private:
int _length;
int _width;
std::string _name;
}
};
Federation.cpp
#include "Federation.hpp"
using namespac std;
Federation::Starfleet::Ship::Ship(int length, int width, string name, short maxWarp): _length(length), _width(width), _name(name), _maxWarp(maxWarp)
{
cout << "Starfleet Ship Created." << endl;
}
Federation::Starfleet::Ship::~Ship()
{
}
Federation::Ship::Ship(int length, int width, string name, int speed = 1): _length(length), _width(width), _name(name)
{
cout << "Regular Ship Created"
}
Federation::Ship::~Ship()
{
}
main.cpp
#include "Federation.hpp"
int main(int ac, char **av)
{
Federation::Starfleet::Ship mainShip(10, 10, "Starfleet Ship", 20);
Federation::Ship smallShip(5, 5, "Small Ship");
}
在编译时出现此错误:“ Federation :: Ship :: Ship(int,int,std :: __ cxx11 :: string,int)的原型与Federation :: Ship中的任何类都不匹配” < / strong>
我完全不知道这意味着什么,当我查看我的hpp文件中的函数时,所有这些函数似乎都是正确的,因此我并不真正理解在这种情况下我到底在做什么错。 / p>
答案 0 :(得分:4)
这与名称空间无关。您可以在标头中声明具有特定原型的c'tor:
Ship(int length, int width, std::string name);
然后在实现文件中随机添加带有默认参数的参数:
Federation::Ship::Ship(int length, int width, string name, int speed = 1)
参数类型是任何函数或构造函数签名的一部分。因此,您的声明和定义不匹配。在标头中声明额外的参数(以及默认参数)。
Ship(int length, int width, string name, int speed = 1);
// and
Federation::Ship::Ship(int length, int width, string name, int speed)