vote up -12 vote down star

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?

flag

51% accept rate
7  
Sorry if this sounds rude, but if you needed two months to understand this line, why are you coding? – Gamecat Nov 6 '08 at 12:52
2  
What is the actual question here? Is it "isn't y = (x = 2) + 1 in VB a nice optimization"? – bzlm Nov 6 '08 at 12:54
2  
I think these are "typing optimizations" – Ali A Nov 6 '08 at 13:40
This question, albeit with some interest, is poorly formulated... and that is the reason to close it? I'm not voting it down! Omar, please formulate this question as such. Your actual question was "nice no?" for crying out loud. – jpinto3912 Jun 3 at 15:07
1  
This is some kind of sadism! :-O – Isaac Sep 13 at 21:35

12 Answers

vote up 3 vote down

The meaning of this:

if (x = 2)

depends on the language. It's not clear what semantics you're after here...

link|flag
hmm generally this should give 1 or 0 or -1. Yes it visual basic – Omar Abid Nov 6 '08 at 12:49
2  
What do you mean by "generally"? In C# it doesn't compile, for instance... – Jon Skeet Nov 6 '08 at 12:56
vote up 13 vote down

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.

link|flag
It's only useful if the test is being repeated on a graphics routine or something that runs a zillion times, where avoiding the if..then can cause a impact. I've saw a graphic intensive app that removed if..then on one of its' drawing routines using that construct and the impact was huge. – Fabricio Araujo May 21 at 15:44
vote up 4 vote down

I'm not sure there's anything fantastic about deliberate obfuscation.

Think of the next guy.

link|flag
vote up 0 vote down

I agree with Jon.

I prefer to write a few more lines, than having my code obfuscated or not portable anymore.

link|flag
vote up 0 vote down

No. Confusing and probably of infinitessimal performance gain.

Also, doesn't it set y to 1 if x isn't 2?

link|flag
Most likely no performance gain. Any decent compiler will put that value in a register and just reuse it. That emits the exact same code whether you put in on two statements, or cram it together into one. – T.E.D. Jun 4 at 21:42
vote up 5 vote down

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".

link|flag
Heh. I'm the proud author of several of those entries. Mostly the Ada-related ones. – T.E.D. Jun 4 at 21:39
vote up 3 vote down

There was a time where I was impressed by C because its terseness and ability to write compact code.
I grown up and now that I corrected lot of bugs (did lot of maintenance), I know for sure I prefer readable code, doing stuff in 3 lines instead of 1, even if it means a slight, non-perceptible (in general) performance loss, to very astute code.
As you wrote, you needed lot of time to understand the code. Good code is maintainable code, not wow! code. Such code is nice in a puzzle book, not in real applications... ;-)

link|flag
...which is why C syntax in a language is a downright menace. – T.E.D. Jun 4 at 21:40
vote up 11 vote down

Im just a happy coder if my fellows stop doing this:

   If IsEnabled=true then
      FirstNameTextBox.Enabled=True
      LastNameTextBox.Enabled=True
   Else
      FirstNameTextBox.Enabled=False
      LastNameTextBox.Enabled=False
   End if

And instead Do this:

   FirstNameTextBox.Enabled=IsEnabled
   LastNameTextBox.Enabled=IsEnabled

;-)

link|flag
3  
THANK YOU! I'm glad there's someone else out there that feels the same about that... – chills42 Nov 6 '08 at 14:18
vote up 0 vote down

I like to use Linq directly on a foreach/next like this:

    For Each Cust As Customer In From c In MyCustomers Select c Where c.ZipCode Like "11__%" Order By c.LastName
        MsgBox(Cust.FirstName & " " & Cust.LastName)
    Next

I dont know if its bad or good, but its pretty neat to code like that.

link|flag
vote up 0 vote down

Actually, no it isn't nice :)

link|flag
vote up 3 vote down

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:

  • include the "normal" code section in comments, prior to the optimized version;
  • evaluate whether optimizing that piece of code versus making it virtually unmanageable is worth it.

P.S. all those down votes are because you're lazy making a question.

link|flag
vote up 0 vote down

It's a very very bad optimization, as it changes what the code does.

The code

y = (X = 2) + 1

is not at all equivalent to:

If x = 2 Then y = 3

It's equivalent to:

If x = 2 Then
   y = 0
Else
   y = 1
End If
link|flag

Your Answer

Get an OpenID
or

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