vote up 7 vote down star

Some people would rather user if statements then a ternary operator because they say the increase complexity in your programs. I personally like ternary operators, what is your opinion? Should you use if statements or ternary operators?

flag

Somewhat a duplicate of stackoverflow.com/questions/160218/… – ShreevatsaR Feb 11 at 1:44

19 Answers

vote up 20 vote down check

I love them, especially in type-safe languages.

I don't see how this:

int count = (condition) ? 1 : 0;

is any harder than this:

int count;

if (condition)
{
  count = 1;
} 
else
{
  count = 0;
}

edit -

I'd argue that ternary operators make everything less complex and more neat than the alternative.

link|flag
vote up 11 vote down

Like so many opinion questions, the answer is inevitably: it depends

For something like:

return x ? "Yes" : "No";

I think that is much more concise (and quicker for me to parse) than:

if (x) {
    return "Yes";
} else {
    return "No";
}

Now if your conditional expression is complex, then the ternary operation is not a good choice. Something like:

x && y && z >= 10 && s.Length == 0 || !foo

is not a good candidate for the ternary operator.

As an aside, if you are a C programmer, GCC actually has an extension that allows you to exclude the if-true portion of the ternary, like this:

/* 'y' is a char * */
const char *x = y ? : "Not set";

Which will set x to y assuming y is not NULL. Good stuff.

link|flag
Fixed slight syntax and grammar prob, Sean :-) Missing y from last bit of code and "assign x to y" means "y = x", so I chgd to "set x to y". – paxdiablo Feb 11 at 1:55
@Pax: Thanks! I rolled back the syntax change since I was trying to point out that with GCC extensions you don't need the if-true portion of the ternary. – Sean Bright Feb 11 at 1:56
Sorry, didn't see that paragraph. Don't know that I agree with that sort of stuff though since it allows people to write code that won't compile with a ISO-standard compiler. Still, when GCC is the last man standing, that won't matter :-) – paxdiablo Feb 11 at 2:00
It is voodoo, for sure... And who doesn't use GCC? :D – Sean Bright Feb 11 at 2:01
vote up 6 vote down

By the measure of cyclomatic complexity, the use of if statements or the ternary operator are equivalent. So by that measure, the answer is no, the complexity would be exactly the same as before.

By other measures such as readability, maintainability, and DRY (Don't-Repeat-Yourself), either choice may prove better than the other.

link|flag
vote up 4 vote down

I've seen such beasts like (it was actually much worse since it was isValidDate and checked month and day as well, but I couldn't be bothered trying to remember the whole thing):

isLeapYear =
    ((yyyy % 400) == 0)
    ? 1
    : ((yyyy % 100) == 0)
        ? 0
        : ((yyyy % 4) == 0)
            ? 1
            : 0;

where, plainly, a series of if-statements would have been better (although this one's still better than the macro version I once saw).

I don't mind it for small things like:

reportedAge = (isFemale && (Age >= 21)) ? 21 + (Age - 21) / 3 : Age;

or even slightly tricky things like:

printf ("Deleted %d file%s\n", n, (n == 1) ? "" : "s");
link|flag
vote up 4 vote down

If you're using the ternary operator for a simple conditional assignment I think it's fine. I've seen it (ab)used to control program flow without even making an assignment, and I think that should be avoided. Use an if statement in these cases.

link|flag
vote up 3 vote down

I like 'em. I don't know why, but I feel very cool when I use the ternary expression.

link|flag
vote up 1 vote down

For simple tasks like assigning a different value depending on a condition they're great. I wouldn't use them when there are longer expressions depending on the condition tho.

link|flag
vote up 1 vote down

If you and your workmates understand what they do and they aren't created in massive groups I think they make the code less complex and easier to read because there is simply less code.

The only time i think ternary operators make code harder to understand is when you have about 3 or 4 or more in the one line. Most people don't remember that they are right based precedence and when you have a stack of them it makes reading the code a nightmare.

EDIT: 5 in one group? What was I thinking!! thats way to much :) 3 or 4 is more reasonable.

link|flag
vote up 1 vote down

As others have pointed out they are nice for short simple conditions. I especially like them for defaults (kind of like the || and or usage in javascript and python), e.g.

int repCount = pRepCountIn ? *pRepCountIn : defaultRepCount;

Another common use is to initialize a reference in C++. Since references have to be declared and initialized in the same statement you can't use an if statement.

SomeType& ref = pInput ? *pInput : somethingElse;
link|flag
Amazing that this is the first mention of initialising references, which is one of the few places where "if" cannot be used instead of ?:. (I guess because this is not a C++-specific question...) They are also useful in constructor initialisation lists, for the same reason. – j_random_hacker Feb 11 at 4:26
vote up 1 vote down

A so many answers have said, it depends. I find that if the ternary comparison is not visible in a quick scan down the code, then it should not be used.

As a side issue, I might also note that its very existence is actually a bit of an anomoly due to the fact that in C, comparison testing is a statement. In Icon, the if construct (like most of Icon) is actually an expression. So you can do things like:

x[if y > 5 then 5 else y] := "Y"

... which I find much more readable than a ternery comparison operator. :-)

There was a discussion recently about the possibility of adding the ?: operator to Icon, but several people correctly pointed out that there was absolutely no need because of the way if works.

Which means that if you could do that in C (or any of the other languages that have the ternery operator), then you wouldn't, in fact, need the ternery operator at all.

link|flag
vote up 0 vote down

No, ternary operators do not increase complexity. Unfortunately, some developers are so oriented to an imperative programming style that they reject (or won't learn) anything else. I do not believe that, for example:

int c = a < b ? a : b;

is "more complex" than the equivalent (but more verbose):

int c;
if (a < b) {
    c = a;
} else {
    c = b;
}

or the even more awkward (which I've seen):

int c = a;
if (!a < b) {
    c = b;
}

That said, look carefully at your alternatives on a case-by-case basis. Assuming a propoerly-educated developer, ask which most succinctly expresses the intent of your code and go with that one.

link|flag
int c = MIN( a, b ); // Seems clearer than the ternary operator. – casualcoder Feb 11 at 1:52
And MIN is defined where in the C standard? You still have to write code to implement it, as in: int MIN (int n1, int n2) { return (n1 < n2) ? n1 : n2; }". – paxdiablo Feb 11 at 2:09
@causualcode: It was an example. – joel.neely Feb 11 at 12:33
vote up 0 vote down

I used to be in the “ternary operators make a line un-readable” camp, but in the last few years I’ve grown to like them when used in moderation. Single line ternary operators can increase readability if everybody on your team understands what’s going on. It’s a concise way of doing something without the overhead of lots of curly braces for the sake of curly braces.

The two cases where I don’t like them: if they go too far beyond the 120 column mark or if they are embedded in other ternary operators. If you can’t quickly, easily and readably express what you’re doing in a ternary operator. Then use the if/else equivalent.

link|flag
vote up 0 vote down

It depends :)

They are useful when dealing with possibly null references (btw: Java really needs a way to easily compare two possibly null strings).

The problem begins, when you are nesting many ternary operators in one expression.

link|flag
Actually I disagree with your 'BTW'. Does a NULL string equal another NULL string or not? My opinion is they're not actually strings until they're non-NULL. – paxdiablo Feb 11 at 1:51
Maybe I'm a little biased - recently I do mostly eclipse rcp, and I can't count places in code where I've seen variations on this theme: if ( (evt.getNewValue()!=null && evt.getNewValue().equals(evt.getOldValue())) || evt.getNewValue()==evt.getOldValue()) { return; } //do sth – ajuc Feb 11 at 2:03
vote up 0 vote down

No (unless they're misused). Where the expression is part of a larger expression, the use of a ternary operator is often much clearer.

link|flag
vote up 0 vote down

I think it really depends on the context they are used in.

Something like this would be a really confusing, albeit effective, way to use them:

 __CRT_INLINE int __cdecl getchar (void)
{
   return (--stdin->_cnt >= 0)
          ?  (int) (unsigned char) *stdin->_ptr++
          : _filbuf (stdin);
}

However, this:

c = a > b ? a : b;

is perfectly reasonable.

I personally think they should be used when they cut down on overly verbose IF statements. The problem is people are either petrified of them, or like them so much they get used almost exclusively instead of IF statements.

link|flag
vote up 0 vote down

No. They are hard to read. If/Else is much easier to read.

This is my opinion. Your mileage may vary.

link|flag
vote up 0 vote down

string someSay = bCanReadThis ? "No" : "Yes";

link|flag
vote up 0 vote down

In small doses they can reduce the number of lines and make code more readable; particularly if the outcome is something like setting a char string to "Yes" or "No" based on the result of a calculation.

Example:

char* c = NULL;
if(x) {
  c = "true";
}else {
  c = "false";
}

compared with:

char* c = x ? "Yes" : "No";

The only bug that can occur in simple tests like that is assigning an incorrect value, but since the conditional is usually simple it's less likely the programmer will get it wrong. Having your program print the wrong output isn't the end of the world, and should should be caught in all of code review, bench testing and production testing phases.

I'll counter my own argument with now it's more difficult to use code coverage metrics to assist in knowing how good your test cases are. In the first example you can test for coverage on both the assignment lines; if one is not covered then your tests are not exercising all possible code flows.

In the second example the line will show as being executed regardless of the value of X, so you can't be certain you've tested the alternate path (YMMV depending on the ability of your coverage tools).

This matters more with the increasing complexity of the tests.

link|flag
vote up -2 vote down

Excel does not give you a choice. Here is my favorite Excel macro. Can you figure out what it does? :-)

=IF(DASHBOARD!$F$6=1,
IF(VLOOKUP($C10,IND.WORKSHEET!$C$6:$GS$208,152,FALSE)=DASHBOARD!$A$227,
(VLOOKUP($C10,IND.WORKSHEET!$C$6:$GS$208,153,FALSE)*
VLOOKUP($C10,IND.WORKSHEET!
$C$6:$GS$208,150,FALSE)*VLOOKUP(VLOOKUP($C10,IND.WORKSHEET!
$C$6:$GS$208,151,FALSE),ORG.WORKSHEET!$B$126:$Q$137,13,FALSE)*1000),0),
IF(VLOOKUP($C10,IND.WORKSHEET!$C$6:$GS$208,122,FALSE)=DASHBOARD!$A$227,
(VLOOKUP($C10,IND.WORKSHEET!$C$6:$GS$208,123,FALSE)*
VLOOKUP($C10,IND.WORKSHEET!
$C$6:$GS$208,120,FALSE)*VLOOKUP(VLOOKUP($C10,IND.WORKSHEET!
$C$6:$GS$208,121,FALSE),ORG.WORKSHEET!$B$126:$Q$137,13,FALSE)*1000),0))

Please, before any more down-votes, read my comment.

link|flag
Err, can't you create user functions in Excel VBA that can be called as a cell function? – paxdiablo Feb 11 at 2:01
I was kidding. Sorry that it did not come across that way. I did not write this macro. – cdonner Feb 11 at 3:35
Er, kidding not for the sake of the joke, but the underline the point that others have made - namely that once you reach a certain level of complexity, you want to look for other options. – cdonner Feb 11 at 3:37
If by "read my comment" you mean the comments not in the answer itself, you can edit your answer to include the comments. – ShreevatsaR Feb 11 at 13:06
I know, but that I prefer not to tamper with the "evidence". – cdonner Feb 12 at 4:12

Your Answer

Get an OpenID
or

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