我正在尝试实现滚动多个骰子,但是使用我的代码,即使我创建了 2 个以上的骰子,它们似乎总是滚动相同的数字。这是我的代码:
Dice::Dice() {}
void Dice::roll()
{
srand(time(0));
setFaceValue((rand() % MAX_FACE_VALUE + 1));
}
int Dice::getFaceValue()
{
return currentFaceValue;
}
void Dice::setFaceValue(int value)
{
currentFaceValue = value;
}
如果我将它编程到我的驱动程序中,我会得到相同的数字 3 次。
int main()
{
Dice d1, d2, d3;
d1.roll();
cout << d1.getFaceValue() << endl;
d2.roll();
cout << d2.getFaceValue() << endl;
d3.roll();
cout << d3.getFaceValue() << endl;
}