gpt4 book ai didi

c++ - error C2512 没有合适的默认构造函数可用

转载 作者:行者123 更新时间:2023-11-30 00:52:42 36 4
gpt4 key购买 nike

好的,我遇到的这个问题涉及两个类。

骰子.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;
};

骰子.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

如果我使用 void Dice(void); 格式为 Dice 创建另一个构造函数,它就可以正常工作。

任何帮助将不胜感激

最佳答案

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

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

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

关于c++ - error C2512 没有合适的默认构造函数可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18391315/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com