How can you query boolean values of integers in Java?
Question for a school project. The idea is to program a game in BlueJ in which you have to walk along a path with two squares. Each square should have a 50/50 chance of progressing.
This is the code to distinguish the fields:
feld = new Quadrat[2][11]; zufall = new Random(); for (int i=0; i<11; i=i+1) { feld[zufall.nextInt(2)][i].equals(false); if (feld[0][i].equals(false)) { feld[1][i].equals(true); } else { feld[1][i].equals(false); feld[0][i].equals(true);
How can you query whether a field has the value true or false? The field is a square, so you can't query a Boolean value.
The class “Quadrat” is what you have built in class, so of course I can’t tell exactly what methods it has. Did you implement a method with the signature “public boolean equals(boolean)” for the class? If yes, this is usually only used to compare a value, but not to write a value in the array.
With “new square[11][2], you’ll only create an empty array. You should write a new square object for each element. As you seem to only work with boolean values, it might be more skillful to use a boolean array.
As I understand the task, one should set the first element to true with a 50:50 probability and if it is true, one should set the second element to true again with a 50:50 probability. In your variant, however, one of the two elements is randomly selected, which is then set to false and then it is checked whether the first element false is the respective other one set to true.
So once your variant is rebuilt so that it can at least be compiled:
And once the variant I understand it:
According to your description, the proceeding is nothing that is determined by the field state. Instead, each field will be redesigned.
That means you only need to determine a random number between 0 (included) and 2 (exclusive). Whether you continue, it is determined whether or not the number is greater than 0.
Instead of a mathematical comparison, the nextBoolean-Method of Random-Use objects.
Hello dear,
I’m not sure what you mean. You can simply extend the class square by a boolean and then ask it off?
If this is a specified class from a library, you can still create your own class (a wrapper) and add the square and boolean as a property.
Best regards