Is it okay to do like this in java, does it work?
if (turtles.get(h).getX() == turtles.get(g).getX() == 450) {
//stuff here
}
Basically, i want to check if X is the same value as Y and that value should be 450.
|
Is it okay to do like this in java, does it work?
Basically, i want to check if X is the same value as Y and that value should be 450.
| |||||
feedback
|
|
No. It is the same as (turtles.get(h).getX() == turtles.get(g).getX()) == 450 - "incomparable types". | |||
|
feedback
|
|
No. What do you expect to happen there? "a == b" evaluates into a boolean, so "int == (int == int)" would evaluate into "int == boolean", and you cannot compare and int and a boolean. Besides, what kind of logic are you trying to do here? | |||||||
feedback
|
|
No, it's not. This is because the result of Not what you want to do, usually! Note that this trick can work for assignment because the result of | |||||||||||
feedback
|
|
Or avoid all the less-readable (and error-prone) repetition with a helper method...
| ||||
|
feedback
|
|
That won't work, because the | |||||||||||||||
feedback
|
|
No it won't work, as explained in the other posts. But you could do
| |||||||||||||||
feedback
|