c++ - 大量与困惑的 OOP 代码相关的错误

标签 c++ oop

我在编译时收到负载 的错误。如果我解决了其中一个问题,希望事情对我来说会变得更清楚(如果没有,那么我可以发布其余部分):

“武器”:非法成员初始化:“名称”不是基础或成员

它具有名称和成本。 Weapon 继承了 Shopable,Shopable 在它的 protected 部分有 Name,Cost 和 Description。

Shopable.h:

#ifndef _SHOPABLE_H_
#define _SHOPABLE_H_

#include "Library.h"

class Shopable{
protected:
    std::string Name;
    int Cost;
    std::string Description;
public:
    std::string getName() const{return Name;}
    int getCost() const {return Cost;}
    virtual std::string getDesc() const = 0;
};

#endif

武器.h:

#ifndef _WEAPON_H_
#define _WEAPON_H_

#include "Shopable.h"

class Weapon : public Shopable{
private:
    int Damage;
public:
    Weapon(int c,int d,std::string n) : Cost(c), Damage(d), Name(n){}
    std::string getDesc() const{
        return getName()+"\t"+tostring(Damage)+"\t"+tostring(Cost);
    }
    int getDamage() const{return Damage;}
    int DamageTarget(Entity* target){
        int DamageDealt = 0;
        //do damage algorithm things here
        return DamageDealt;
    }
};

#endif
Library.h:

#ifndef _LIBRARY_
#define _LIBRARY_

#include <iostream>
#include <string>
#include <cstring>
#include <cmath>
#include <cstdio>
#include <cstdarg>
#include <vector>
#include <ctime>
#include <cmath>
#include <cstdlib>
#include <map>
#include <exception>
#include <sstream>

//file includes
#include "Globals.h"
#include "Player.h"
#include "Exception.h"
#include "Weapon.h"
#include "Armour.h"
#include "Consumable.h"

//prototypes that require "Library.h"
bool Poglathon(std::vector<std::string>& text,Player *player);
bool PoglathonTown(std::vector<std::string>& text,Player *player);

std::map<std::string,Weapon*> init_weapons(void);
std::map<std::string,Armour*> init_armour(void);
std::map<std::string,Consumable*> init_consumables(void);

#endif //__LIBRARY__

全局变量.h:

//global variables
#ifndef _GLOBAL_
#define _GLOBAL_

#include <vector>
#include <iostream>
#include <string>

//prototypes
void NPCTalk(std::string const& speaker,std::vector<std::string> const& text);
void wait(double seconds);
void regionChange(int amount);
int getPositionInStringVector(std::vector<std::string> const& vec,std::string value);


//variables


//defines
#define RegionChange 3

////tostring
template <class TYPE> std::string tostring(const TYPE & t ) {
    std::ostringstream os;
    os << t;
    return os.str();
};

#endif //__GLOBAL__

最佳答案

您只能在初始化列表中初始化当前 类的成员。 Name(和Cost)都是基类的成员;它们必须在基类构造函数中初始化。

最简单的方法是向 Shopable 添加一个构造函数:

class Shopable {
    ...
public:
    Shopable(std::string n, int c, std::string d)
    : Name(n), Cost(c), Description(d) {}
    ...
};

然后在 Weapon 初始化列表中使用它:

class Weapon : public Shopable {
    ...
public:
    Weapon(int c,int d,std::string n)
    : Shopable(n,c,""), Damage(d)
    {}
};

关于c++ - 大量与困惑的 OOP 代码相关的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5848043/

相关文章:

python - 设计模式在 Web 开发中有多重要?

java - 为一名观察者提供多个主题的正确设计模式

c++ - 在托管 C++ 项目中使用 wchar_t 时未解析的外部符号

c++ - 在 linux 中使用 QAudioInput 录制并在 windows 中播放

c++ - 根据数组检查值时 Arduino 出错

c++ - c++ libssh2 使用什么传输模式?

oop - 在 Python 中启用用户代码扩展的流行技术是什么?

python - 在 Python 中将对象属性传递给函数的最佳方式是什么?

c++ - 使用 C 样式字符串文字与构造未命名的 std::string 对象的默认建议?

oop - Liskov 替换原则是否适用于从抽象类继承的子类型?