found it on a book and I understood it after 2 month
while using if (x = 2) then y = 3 (for example)
you can test this one y = (x = 2) + 1
nice no?
|
|
found it on a book and I understood it after 2 month while using if (x = 2) then y = 3 (for example) you can test this one y = (x = 2) + 1 nice no?
|
||||||||||||||||||
|
|
|
It's a very very bad optimization, as it changes what the code does. The code
is not at all equivalent to:
It's equivalent to:
|
||
|
|
|
|
Often optimizations make your code "write-only"... i.e., even you, given months of pause, can't really understand the code by -- reading -- it (you have to execute what you're reading to understand the purpose). When such happens, the way to go is:
P.S. all those down votes are because you're lazy making a question. |
|||
|
|
|
|
Actually, no it isn't nice :) |
||
|
|
|
|
I like to use Linq directly on a foreach/next like this:
I dont know if its bad or good, but its pretty neat to code like that. |
||
|
|
|
|
Im just a happy coder if my fellows stop doing this:
And instead Do this:
;-) |
||||
|
|
|
There was a time where I was impressed by C because its terseness and ability to write compact code. |
||
|
|
|
As others have said, it's obfuscation. If you're a fan of such things, you might like Roedy Green's essay, "How to write unmaintainable code". |
||
|
|
|
No. Confusing and probably of infinitessimal performance gain. Also, doesn't it set y to 1 if x isn't 2? |
||
|
|
|
I agree with Jon. I prefer to write a few more lines, than having my code obfuscated or not portable anymore. |
||
|
|
|
|
I'm not sure there's anything fantastic about deliberate obfuscation. Think of the next guy. |
||
|
|
|
|
Not nice, it reduces the understandability of the code. Keep complexity as low as possible. Other people than you have to read and understand the code. |
||
|
|
|
The meaning of this:
depends on the language. It's not clear what semantics you're after here... |
||