Tagged Questions
5
votes
5answers
1k views
In Java, what are the boolean “order of operations”?
Let's take a simple example of an object "Cat". I want to be sure the "not null" cat is either orange or grey.
if(cat != null && cat.getColor() == "orange" || cat.getColor() == "grey") {
...
2
votes
5answers
112 views
Order of evaluation of expression
I've just read that order of evaluation and precedence of operators are different but related concepts in C++. But I'm still unclear how those are different but related?.
int x = c + a * b; // 31
...