说你有一个这样编码的类:
class Monster
{
public:
Monster(std::string& name, int hp, int acc, int xpReward
int armor, const std::string& weaponName,
int Lowdamage, int highdamage);
//insert methods
private:
//data types
};
什么是怪物(....行,为怪物类创建对象?这是一个构造函数吗?真的想知道这件事做的一切
答案 0 :(得分:0)
它是参数化构造函数的声明。现在,它只是声明,它什么也没做,你没有发布属于它的代码。