Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was looking over some mock OCJP questions. I came across a really baffling syntax. Here it is.

class OddStuff {
    public static void main(String[] args) {
        boolean b = false;
        System.out.println((b != b));// False
        System.out.println((b =! b));// True
    }
}

Why does the output change between != and =!?

share|improve this question

5 Answers

up vote 37 down vote accepted

The question is just playing with you with confusing spacing.

b != b is the usual != (not equals) comparison.

On the other hand:

b =! b is better written as b = !b which is parsed as:

b = (!b)

Thus it's two operators.

  1. First invert b.
  2. Then assign it back to b.

The assignment operator returns the assigned value. Therefore, (b =! b) evaluates to true - which is what you print out.

share|improve this answer
2  
correct and more correctly it's (b = !b) vs. (b != b) – Umair Ashraf Jan 11 '12 at 20:06
1  
I didn't know assignments could be done in that manner. – Osama Rao Jan 11 '12 at 20:10
1  
@Prometheus87 Yes, you can put assignments inside statements. – Mysticial Jan 11 '12 at 20:11
Great, i learnt something new. Thanks! – Osama Rao Jan 11 '12 at 20:13
Also key is the fact that assignments evaluate to the assigned value, so System.out.println(b = !b) is printing the value of b after !b is assigned to it. – Paul Bellora Jan 11 '12 at 20:31
show 1 more comment

b=!b is an assignment. It assigns b to !b and the expression evaluates to the resulting value, which is true.

share|improve this answer

b != b means ! (b == b): the opposite of b == b.

b =! b is actually b = !b, an assignment. It's toggling b's value. An assignment evaluates to the value of the expression, so this will evaluate to !b (along with having changed the value of b).

share|improve this answer

b =! b

you are doing an assignment, you are saying that B should have the value of !B.

b != b

You are asking if B is different than b

share|improve this answer

With the first you are comparing b variable with b variable and since the variable is the same the not equal condition return false.

In the second statement you are assigning the b variable to the negation of b so you are changing the value of b from false to true, so the evaluation obviously return true .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.