错误C2512没有适当的默认构造函数可用

时间:2013-08-22 21:41:40

标签: c++

好的,所以我有这个涉及两个类的问题。

Dice.h:

#pragma once

#include <random>

using std::random_device;
using std::uniform_int_distribution;

class Dice
{
public:
    Dice(int Sides);
    int roll(void);

protected:
    int nSides;
    random_device generator;
    uniform_int_distribution<int> distribution;
};

Dice.cpp:

#include "Dice.h"



Dice::Dice(int Sides)
{
    nSides=Sides;
}



int Dice::roll(void)
{
    random_device generator;
    uniform_int_distribution<int> distribution(1,nSides);

    return distribution(generator);
}

DmgCalc.h:

#pragma once

#include "CharSheet.h"
#include "Dice.h"
class DmgCalc
{
public:
    DmgCalc(CharSheet P1, CharSheet P2);

    bool Dodge();

    int Attack();

    int Roll();
protected:

    int nP1Con, nP1Str, nP1Dex;
    int nP2Con, nP2Dex, nP2Hlth;

    Dice d6;
};

DmgCalc.cpp:

#include "DmgCalc.h"


DmgCalc::DmgCalc(CharSheet P1, CharSheet P2)
{
    nP1Str=P1.getStr();
    nP1Dex=P1.getDex();

    nP2Con=P2.getCon();
    nP2Dex=P2.getDex();
    nP2Hlth=P2.getHlth();

    Dice d6(6);
}


bool DmgCalc::Dodge()
{
    return ((nP1Dex + d6.roll())-(nP2Dex + d6.roll()) > 0);
}

int DmgCalc::Attack()
{
    nP2Hlth-=((nP1Str + d6.roll())-(nP2Con));

    return nP2Hlth;
}

int DmgCalc::Roll()
{
    return d6.roll();
}

每当我尝试编译时,我都会收到此错误:

Error   2   error C2512: 'Dice' : no appropriate default constructor available

如果我为Dice创建另一个格式为void Dice(void);的构造函数,它就可以了。

非常感谢任何帮助

1 个答案:

答案 0 :(得分:6)

您需要在构造函数的初始化列表中初始化Dice成员

DmgCalc::DmgCalc(CharSheet P1, CharSheet P2)
    : d6(20)
{

此处未初始化的任何内容都将调用其默认构造函数。 Dice没有默认构造函数,因此编译错误。