vote up 5 vote down star

I found this statement is some old code and it took me a second to figure out...

IsTestActive = (TestStateID == 1 ? true : false);

Please correct me if I'm wrong but isn't this the same as this one?:

IsTestActive = (TestStateID == 1);

If it is, why would you ever want to use the first? Which one is more readable? (I think the latter, but I'd like to see what others think.)

flag

ternary operators f**kin rule!!!! – theman_on_vista Mar 10 at 12:53

5 Answers

vote up 30 vote down check

Yes, it is exactly the same.

Yes, the latter is more readable.

link|flag
agreed - the latter – annakata Jan 7 '09 at 14:05
Ok, good too see that others agree. I couldn't understand why that was there... – chills42 Jan 7 '09 at 14:08
I've only seen the former used by 2 types of people: those who lack a fundamental understanding of boolean logic, or those that think the ternary operator is really cool. – John Kraft Jan 7 '09 at 16:46
definitely the latter one. – dr. evil Jan 7 '09 at 16:55
vote up 0 vote down

Readability depends on where you use this construct. I often find something like

(TestStateID == 1 ? true : false)

more readable.

link|flag
vote up 3 vote down
IsTestActive = (TestStateID == 1);

is definitely more readable.

You could make a case for defining a constant

ACTIVE = 1

then replacing the boolean variable IsTestActive with

(TestStateID == ACTIVE)

The way the code is now, the state of the boolean IsTestActive will be erroneous if the state of TestStateID changes without updating the boolean. Bypassing the boolean and testing the real source of the information you're after will remove the possibility of this error.

link|flag
good point, I hate magic integers - but I assume the OP was just posting example code – annakata Jan 7 '09 at 16:36
That may be, but I do see a lot of people using temp variables like this in production code. – Bill the Lizard Jan 8 '09 at 17:45
vote up 0 vote down

I must admit I'd never seen nor used the latter one, only the former. But thanks for the learning tip!

link|flag
vote up 1 vote down

No, there's no practical reason for using the first version, world isn't perfect, and neither are programmers.

link|flag
Love that site, always nice to see new ways not to do things... – chills42 Jan 7 '09 at 14:09

Your Answer

Get an OpenID
or

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