Sometimes there are a solution that it's simple and elegant but imposible to understand by all.

What do you think about this expresion, exchange value of two variables, without auxiliar variable:

a=(a^=b)^(b^=a);

I suppose that any programmer that finds this code, change it or write a explaining commentary.

Do you refactor this code? What is your best simple solution but you don't use because is very ofuscation? Should technically improve the team to understand this code or it's preferible change the code?

link|improve this question

1  
Better asked at programmers.stackexchange.com. – Matt Ball Dec 13 '10 at 20:24
1  
A "simple" solution is not obfuscatory. If your supposed "simple" solution is potentially confusing or non-obvious, you should really reconsider whether it's actually "simple". – Anon. Dec 13 '10 at 20:38
If that expression is in C or C++, it's undefined behavior. What's simple and elegant about undefined behavior? – David Thornley Dec 13 '10 at 20:52
feedback

5 Answers

up vote 7 down vote accepted

I think the code you posted is a very bad idea:

  • It's not obvious what the intention is.
  • It's not obvious in what order the expression is evaluated and when the side effects are performed.
  • It behaves differently in different languages that have different evaluation rules.
  • In some languages it gives undefined behaviour.
  • There are much simpler and more readable ways to achieve the same effect.

As someone that uses many different languages, I try to avoid writing code that unnecessarily relies on subtleties in one specific language's evaluation rules. I prefer not to have to spend time carefully reading through language specifications and instead concentrate my efforts on the actual task I'm trying to solve.

link|improve this answer
1  
Specifically, it doesn't work if the (b^=a) happens first. We used the idiom a fair amount in assembler 25-30 yrs ago - can't see any point at all these days, it takes too long to understand by people who've never seen it and adds nothing worth having. – Bill99 Dec 13 '10 at 21:46
Even if it's in a language where the result is well-defined (unlike C/C++), it's unnecessarily obscure. How would it be any less complicated to make it three sequential statements? – comingstorm Dec 13 '10 at 21:59
feedback

First rule in groups would probably be to look at the code conventions you have set. If performance is not a key point, I would hide this code in a swap function if possible.

I think design and readability goes before performance and easy-to-writeyness. So I would refactor it if it was in my own section of code. If not, I would add a comment to it.

link|improve this answer
feedback

it depends on if this is an obfuscation contest or a code that is supposed to be used by a team of engineers

link|improve this answer
feedback

Are there comments around it? if there is a comment explaining in short, then I don't consider it as big of a deal. If there is no (or little) comment and the reader is just expected to know it, then I would say that you should refactor it to make more sense. Of course more knowledgeable readers will understand but the maintainers are what you have to think about in this case. I can't think of an answer to my best simple solution, that is obfuscated, I guess some of my regex, could be considered that if people are not familiar with it.

I think that leaving it in with a comment would be a good learning experience for future readers. I know I've learned a lot by that kind of approach. BUT COMMENT IT WELL.

link|improve this answer
feedback

Create a separate function for this part of code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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