假设给定一个Die类,它包含一个六边形模具的随机值。
另一个类PairOfDice
需要访问Die中的getvalue
并存储两个die值。
错误:执行PairOfDice时找不到符号。
如何解决此问题?还有关于Java代码的其他建议吗?
public class Die {
public static Random rand = new Random();
private int sides; // Number of sides
private int value; // Die's value
public Die() {
sides = 6;
roll();
}
public void roll() {
value = rand.nextInt(sides) + 1;
}
public int getSides() {
return sides;
}
public int getValue() {
return value;
}
给出的第二个类是:
public class PairOfDice {
private int dieOne;
private int dieTwo;
public void main(String[] args){
Die die;
die = new Die();
}
private void dieOne(int value){
dieOne = die.getValue();
}
private void dieTwo(int value){
dieTwo = die.getValue();
}
public int getDieOneValue(){
return dieOne;
}
public int getDieTwoValue(){
return dieTwo;
}
}
答案 0 :(得分:1)
此任务应概括为: 我用两个公共构造函数编写了Die类。如果构造函数没有该参数,则die的默认大小为六,否则可以有任意多个边。 然后,我用两个构造函数编写了Dices类。第一个具有骰子的数量(带有6个边),第二个具有具有首选边的骰子列表。 如果您想学习如何概括问题(任何问题),可以检查我的代码。 (当然,它可以更高效,更优雅地完成,但这是简单的代码):
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
class Die {
private Random RAND = new Random();
private int noOfSides;
private int value;
// Default constructor without the parameter of sides gives the six sized die
public Die() {
this.noOfSides = 6;
}
// The constructor WITH number of sides
public Die(int noOfSides) {
this.noOfSides = noOfSides;
}
// rolling the die
public void roll() {
this.value = RAND.nextInt(noOfSides) + 1;
}
public int getValue() {
if (value == 0) roll(); // if the die is never rolled -> roll it!
// else return the rolled value
return value;
}
// just for curiosities
public int getNoOfSides() {
return noOfSides;
}
public String toString() {
return "Die has the " + noOfSides + " sides, and the last roll value was " + getValue();
}
}
class Dices {
private int noOfDices;
private List<Die> myDices = new ArrayList<Die>();
// NO constructor without the number of dices
private Dices() {
}
public Dices(int noOfDices) {
this.noOfDices = noOfDices;
// example is for 6 sided dices
for (int i = 0; i < noOfDices; i++) {
getMyDices().add(new Die());
}
}
// example with the list of dices with predefined sizes
public Dices(List<Die> myDices){
this.myDices = myDices;
}
public List<Die> getMyDices() {
return myDices;
}
public String toString() {
String s = "";
for (Die die : getMyDices()) {
s = s + die + "\n";
}
return s;
}
}
public class Answer {
public static void main(String[] args) {
//test with two dices (6 size):
Dices twoDices = new Dices(2);
System.out.println(twoDices);
//test with 4 dices size 3, 7, 9, 22
Dices fourDices = new Dices
(List.of(new Die(3),
new Die(7),
new Die(9),
new Die(22)));
System.out.println(fourDices);
}
}
您可以看到,如果从未掷骰子,getValue
首先掷骰子,然后返回值。否则,您可以掷骰子,该值将存储到私有字段值中。
答案 1 :(得分:0)
我们将假设Die
类能按预期工作。
因此,人们可能会想到对PairOfDice
进行的这些更改可能会解决当前的问题。
public class PairOfDice {
private Die dieOne = new Die();
private Die dieTwo = new Die();
public static void main(String[] args) {
PairOfDice pair = new PairOfDice();
System.out.printf("Pair: %d - %d%n", pair.getDieOneValue(), pair.getDieTwoValue());
}
public int getDieOneValue() {
dieOne.roll();
return dieOne.getValue();
}
public int getDieTwoValue() {
dieTwo.roll();
return dieTwo.getValue();
}
}
PairOfDice
类应包含对两个骰子的引用(在private Die
实例变量中)。
getDieXValue()
方法使用实例变量,并在生成roll()
之后返回值。
现在,问题是要求是存储两个骰子的values
,还是仅访问获取值的功能。如果确实需要存储值,则可以这样做:
public class PairOfDice {
private int dieOneValue;
private int dieTwoValue;
public PairOfDice {
Die die = new Die();
// get a value for the first die
die.roll();
dieOneValue = die.getValue();
// get a value for the 2nd die
die.roll();
dieTwoValue = die.getValue();
}
public int getDieOneValue() {
return dieOneValue;
}
...
个人而言,如果要创建对象,请存储并使用这些对象。