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 asked to write a swap without using temp variables or using xor and i came up with this.
In Java, this works, but in C/C++ this does not work.

I was under the impression that this would always work since the value of 'a' on the left side of the '|' would be stored in a register and then the assignment to 'a' would occur negating the effect on the assigned value for 'b'.

int a = 5;
int b = -13;
b = a | (0 & (a = b));
share|improve this question
6  
Is the lack of temporary variable really worth the massive drop in readability? – Platinum Azure Jun 20 '12 at 15:02
Well, in C++ it's not "stored in a register" obviously – Mooing Duck Jun 20 '12 at 15:03
1  
Could it be, that the compiler optimizes the code and removes the 0*(a=b)stuff? – lee.O Jun 20 '12 at 15:04
4  
@PlatinumAzure it's a standard exercise. Obviously nobody would put this in real code. – MK. Jun 20 '12 at 15:04
1  
You are not quite on the right track in solving this. This work or doesn't work depending on language internals and undefined (or poorly defined behaviors). Try to think about the problem in a more mathematical way. The solution is intuitive (once you see it) and will work in any language. – MK. Jun 20 '12 at 15:14
show 4 more comments

3 Answers

up vote 10 down vote accepted

You are modifying a variable and reading its value without an intervening sequence point.

b =         a          + 0 *   (a = b);
//  reading a's value        modifying a

This is undefined behavior. You have no right to any expectations on what the code will do.

share|improve this answer
@user1469615: Read this and this – Benjamin Lindley Jun 20 '12 at 15:20
Thanks. I will read more about this. – HBP Jun 20 '12 at 15:45

The C/C++ compiler optimizes the expression 0 * (a = b) to simply 0 which turns your code fragment into:

int a = 5;
int b = -13;
b = a;
share|improve this answer
I wonder if it would make a difference if it was instead, b = a + ((a=b) * 0)? Because it should see the a=b before looking at the * 0. Maybe I should give it a try... – Sephallia Jun 20 '12 at 15:08
1  
@Sephallia: No, it won't get confused. – DeadMG Jun 20 '12 at 15:13
In both cases, a and b have value of -13 ideone.com/uWYkA – HBP Jun 20 '12 at 15:16
I gave it a shot, and the results are inline with @PeterLawrey 's answer. ideone.com/6sO8U – Sephallia Jun 20 '12 at 15:16
3  
That's wrong: optimisation can't remove side-effects such as assignment (except in a very few cases such as copy elision, which doesn't apply here). The problem is that the modification of a and the use of its value are unsequenced, giving undefined behaviour. – Mike Seymour Jun 20 '12 at 15:35

In C/C++, assigment are performed in the order of expression. In Java, assignments occur last regardless of other expressions.

e.g. This increments in C but does nothing in Java.

a = a++;
share|improve this answer
4  
Wrong: in C and C++, the evaluation and side effects of sub-expressions happen in an unspecified order (unless there are sequence points, but there aren't any here). That expression doesn't (necessarily) increment in C; it has undefined behaviour. – Mike Seymour Jun 20 '12 at 15:37

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.