vote up 27 vote down star
4

I'm personally an advocate of the ternary operator: () ? : ; I do realize that it has its place, but I have come across many programmers that are completely against ever using it, and some that use it too often.

What are your feelings on it? What interesting code have you seen using it?

flag

2  
An advocate of something is a person who supports that thing. – Doug McClean Oct 2 '08 at 1:36
Use it when it's clear, avoid it when it confuses. That's a judgment call. It can make code more readable, but only for simple expressions. Trying to always use it is just as much a menace as relentlessly avoiding it. – Abel Nov 5 at 4:40

29 Answers

vote up 30 vote down check

Use when you have expressions that are very simple:

int a = (b > 10) ? c : d;

Avoid to chain ternary operators:

int a = b > 10 ? c < 20 ? 50 : 80 : e == 2 ? 4 : 8;

The expression above is very hard to read and must be avoided! Moreover, when using ternary operator, consider format the code in a way that improve readability:

int a = (b > 10) ? some_value                 
                 : another_value;

Kind Regards

link|flag
3  
Totally agree with the first few statements but totally disagree with your example of "improved readability". If you're going for multi-line why not just use an if statement? – d03boy Oct 2 at 2:19
just because if else is a quite more verbose for simple decisions: int a = 0; if(b > 10) a = some_value; else a = another_value; What do you prefer? – marcospereira Oct 5 at 17:34
vote up 22 vote down

It's a question of style, really; the subconscious rules I tend to follow are:

  • Only evaluate 1 expression - so foo = (bar > baz) ? true : false, but NOT foo = (bar > baz && lotto && someArray.Contains(someValue)) ? true : false
  • If I'm using it for display logic, e.g. <%= (foo) ? "Yes" : "No" %>
  • Only really use it for assignment; never flow logic (so never (foo) ? FooIsTrue(foo) : FooIsALie(foo) ) Flow logic in ternary is itself a lie, ignore that last point.

I like it because it's concise and elegant for simple assignment operations.

link|flag
good guidelines and nice examples! – nickf Oct 1 '08 at 23:59
I think most langauges won't let you use it for flow logic, so you couldn't do (foo)?True(foo):False(foo); unless it was an assignment. – PintSizedCat Oct 2 '08 at 14:21
Oops, yes you're right, my bad. – Keith Williams Oct 2 '08 at 14:48
In C# you can use it for flow control if you're assigning a delegate from within the ternary, and then invoking it afterwards. Well, that's kind of flow control... – Erik Oct 30 '08 at 4:48
Your two first examples are really bad. The results of comparisons are already boolean values, so your ternary operators are useless and only complicate the code. – Trillian Nov 8 at 16:51
vote up 15 vote down

The Ternary ?: operator is merely a functional equivalent of the procedural if construct. So as long as you are not using nested ?: expressions, the arguments for/against the functional representation of any operation applies here. But nesting ternary operations can result in code that is downright confusing (exercise for the reader: try writing a parser that will handle nested ternary conditionals and you will appreciate their complexity).

But there are plenty of situations where conservative use of the ?: operator can result in code that is actually easier to read than otherwise. For example:

int compareTo(Object object) {
    if((isLessThan(object) && reverseOrder) || (isGreaterThan(object) && !reverseOrder)) {
       return 1;
    if((isLessThan(object) && !reverseOrder) || (isGreaterThan(object) && reverseOrder)) {
       return -1;
    else
      return 0;              
}

Now compare that with this:

int compareTo(Object object) {
    if(isLessThan(object))
        return reverseOrder ? 1 : -1;         
    else(isGreaterThan(object))
        return reverseOrder ? -1 : 1;
    else        
       return 0;              
}

As the code is more compact it there is less syntactic noise, and by using the ternary operator judiciously (that is only in relation with the reverseOrder property) the end result isn't particularly terse.

link|flag
i would still advocate using accolades on every if/then/else construction that is not ternary tho, so your second example is missing a few imho. – Kris May 27 at 14:05
vote up 11 vote down

In my mind, it only makes sense to use the ternary operator in cases where an expression is needed.

In other cases, it seems like the ternary operator decreases clarity.

link|flag
the problem being that is 99% of the language, an expression can be replaced by a function ... and ppl avoiding the ternary operator will even prefer that solution. – PierreBdR Oct 1 '08 at 23:32
vote up 7 vote down

I use it quite often in places where I'm constrained to work in a constructor - for example, the new .NET 3.5 LINQ to XML constructs - to define default values when an optional parameter is null.

Contrived example:

var e = new XElement("Something",
    param == null ? new XElement("Value", "Default")
                  : new XElement("Value", param.ToString())
);

or (thanks asterite)

var e = new XElement("Something",
    new XElement("Value",
        param == null ? "Default"
                      : param.ToString()
    )
);

No matter whether you use the ternary operator or not, making sure your code is readable is the important thing. Any construct can be made unreadable.

link|flag
Or... var e = new XElement("Something", new XElement("value", param == null ? "Default" : param.toString())); – asterite Oct 1 '08 at 23:36
I like that you are formatting it for readability, so many don't. – bruceatk Oct 2 '08 at 1:34
What good is human readable source code if it's not human readable? =) – Erik Oct 2 '08 at 2:49
vote up 6 vote down

I use the ternary operator where ever I can, unless it makes the code extremely hard to read, but then that's usually just an indication that my code could use a little refactoring.

It always puzzles me how some people think the ternary operator is a "hidden" feature or is somewhat mysterious. It's one of the first things I learnt when I start programming in C, and I don't think it decreases readability at all. It's a natural part of the language.

link|flag
I am completely in agreement. There is nothing hidden or tricky about it. – mmattax Oct 2 '08 at 0:09
1  
It can cause readability issues, especially when nested. – David Thornley Jan 7 '09 at 22:53
vote up 5 vote down

I like using the operator in debug code to print error values so I don't have to look them up all the time. Usually I do this for debug prints that aren't going to remain once I'm done developing.

int result = do_something();
if( result != 0 )
{
  debug_printf("Error while doing something, code %x (%s)\n", result,
                result == 7 ? "ERROR_YES" :
                result == 8 ? "ERROR_NO" :
                result == 9 ? "ERROR_FILE_NOT_FOUND" :
                "Unknown");
}
link|flag
vote up 4 vote down

It makes debugging slightly more difficult since you can not place breakpoints on each of the sub expressions. I use it rarely.

link|flag
vote up 4 vote down

Chained I'm fine with - nested, not so much.

I tend to use them more in C simply b/c they're an if statement that has value, so it cuts down on unnecessary repetition or variables:

x = (y < 100) ? "dog" :
    (y < 150) ? "cat" :
    (y < 300) ? "bar" : "baz";

rather than

     if (y < 100) { x = "dog"; } 
else if (y < 150) { x = "cat"; }
else if (y < 300) { x = "bar"; } 
else              { x = "baz"; }

In assignments like this, I find it's less to refactor, and clearer.

When I'm working in ruby on the other hand, I'm more likely to use if...else...end because it's an expression too.

x =   if (y < 100) then "dog"
    elif (y < 150) then "cat"
    elif (y < 300) then "bar"
    else                "baz"
    end

(although, admittedly, for something this simple, I might just use the ternary operator anyway).

link|flag
I like your first example - I hadn't thought of chaining them like that before. Thanks for sharing. =) – Erik Oct 2 '08 at 7:26
vote up 4 vote down

I agree with jmulder: it shouldn't be used in place of a if, but it has its place for return expression or inside an expression:

echo "Result: " + n + " meter" + (n != 1 ? "s" : "");
return a == null ? "null" : a;

The former is just an example, a better i18n support of plural should be used!

link|flag
The first ternary is incorrect - you've got a : where the ? should go: (n != 1 *?* "s" : "") – Erik Oct 1 '08 at 23:37
Yes, thanks for pointing that out! Fixed. – PhiLho Oct 2 '08 at 14:15
vote up 3 vote down

I think the ternary operator should be used when needed. It is obviously a very subjective choice, but I find that a simple expression (specially as a return expression) is much clearer than a full test. Example in C/C++:

return (a>0)?a:0;

Compared to:

if(a>0) return a;
else return 0;

You also have the case where the solution is between the ternary operator and creating a function. For example in Python:

l = [ i if i > 0 else 0 for i in lst ]

The alternative is:

def cap(value):
    if value > 0:
        return value
    return 0
l = [ cap(i) for i in lst ]

It is needed enough that in Python (as an example), such an idiom could be seen regularly:

l = [ ((i>0 and [i]) or [0])[0] for i in lst ]

this line uses properties of the logical operators in Python: they are lazy and returns the last value computed if it is equal to the final state.

link|flag
1  
That last line hurts my brain... – Erik Oct 1 '08 at 23:42
vote up 2 vote down

Well, the syntax for it is horrid. I find functional ifs very useful, and often makes code more readable.

I would suggest making a macro to make it more readable, but I'm sure someone can come up with a horrible edge case (as there always is with CPP).

link|flag
many BASIC implementations and variants have an IF function that takes the place of the ternary operator. I have seen a number of codebases with that defined as a macro in C. – Sparr Oct 1 '08 at 23:50
Well, I was thinking of functional programming languages, but yes. – Marcin Oct 1 '08 at 23:59
"Making a macro to make it more readable," you're quite the joker! – niXar Jan 7 '09 at 23:21
vote up 2 vote down

I almost never use the ternary operator because whenever I DO use it, it always makes me think a lot more than I have to later when I try to maintain it.

I like to avoid verbosity, but when it makes the code a lot easier to pick up, I will go for the verbosity.

Consider:

String name = firstName;

if (middleName != null) {
    name += " " + middleName;
}

name += " " + lastName;

Now, that is a bit verbose, but I find it a lot more readable than:

String name = firstName + (middleName == null ? "" : " " + middleName)
    + " " + lastName;

or:

String name = firstName;
name += (middleName == null ? "" : " " + middleName);
name += " " + lastName;

It just seems to compress too much information into too little space, without making it clear what's going on. Everytime I see ternary operator used, I have always found an alternative that seemed much easier to read... then again, that is an extremely subjective opinion, so if you and your colleagues find ternary very readable, go for it.

link|flag
That's not exactly the same thing though. In the second example you're compressing all three statements into one line. That is what decreases readability, not the ternary operator. – ilitirit Oct 1 '08 at 23:54
Fair enough, I updated to incorporate your comment, but it still just feels cluttered to me... but again, it's subjective... I'm not saying ternary is not readable, I'm saying it's not readable to me (99% of the time) – Mike Stone Oct 1 '08 at 23:57
vote up 1 vote down

I treat ternary operators a lot like GOTO. They have their place, but they are something which you should usually avoid to make the code easier to understand.

link|flag
vote up 1 vote down

Only when:

$var = (simple > test ? simple_result_1 : simple_result_2);

KISS.

link|flag
why the parenthesis? – niXar Jan 7 '09 at 23:12
vote up 1 vote down

I use and recommend ternaries to avoid code lines in situations where the logic is trivial.

int i;
if( piVal ) {
    i = *piVal;
} else {
    i = *piDefVal;
}

In the above case I would choose a ternary, because it has less noise:

int i = ( piVal ) ? *piVal : *piDefVal;

Likewise conditional return values are good candidates:

return ( piVal ) ? *piVal : *piDefVal;

I think compactness can improve readability which in turn helps to improve the code quality.

But readability always depends on the code's audience.

The readers must be able to understand the a ? b : c pattern without any mental effort. If you can not presume this, go for the long version.

link|flag
I agree. Once you understand how they work, it is way more readable. Ternary operators are the greatest thing since the foreach loop! – miles.cuc Oct 2 '08 at 14:08
vote up 1 vote down

I like Groovy's special case of the ternary operator, called the Elvis operator: ?:

expr ?: default

This code evaluates to expr if it's not null, and default if it is. Technically it's not really a ternary operator, but it's definitely related to it and saves a lot of time/typing.

link|flag
Yeah, I love that one as well - it's ?? in C#, the null coalesce operator: stackoverflow.com/questions/278703/… – Jarrod Dixon Oct 2 at 2:32
vote up 1 vote down

My recently formulated rule of thumb for determining whether you should use the ternary operator is:

  • if your code is choosing between two different values, go ahead and use the ternary operator.
  • if your code choosing between two different code paths, stick to an if statement.

And be kind to readers of your code. If you are nesting ternary operators, format the code to make that nesting obvious.

link|flag
vote up 0 vote down

I'm a big fan of it ... when appropriate.

Stuff like this is great and, personally, I don't find it too hard to read/understand:

$y = ($x == "a" ? "apple"
   : ($x == "b" ? "banana"
   : ($x == "c" ? "carrot"
   : "default")));

I know that probably makes a lot of people cringe, though.

One thing to keep in mind when using it in PHP is how it works with function that return a reference.

class Foo {
    var $bar;
    function Foo() {
        $this->bar = "original value";
    }
    function &tern() {
        return true ? $this->bar : false;
    }
    function &notTern() {
        if (true) return $this->bar;
        else      return false;
    }
}

$f = new Foo();
$b =& $f->notTern();
$b = "changed";
echo $f->bar;  // "changed"

$f2 = new Foo();
$b2 =& $f->tern();
$b2 = "changed";
echo $f2->bar;  // "original value"
link|flag
That's because ternary operator evaluates the result and returns $this -> bar by its value whereas the other one just plain returns the variable. – Nouveau Oct 2 '08 at 0:17
it's strange how that doesn't cause an error, since you're therefore not returning a reference. – nickf Oct 2 '08 at 2:01
vote up 0 vote down

I recently saw a variation on ternary operators (well, sort of) that make the standard "() ? :" variant seem to be a paragon of clarity:

var Result = [CaseIfFalse, CaseIfTrue][(boolean expression)]

or, to give a more tangible example:

var Name = ['Jane', 'John'][Gender == 'm'];

Mind you, this is Javascript, so things like that might not be possible in other languages (thankfully).

link|flag
1  
wow, that's awful! imagine nesting a couple of those together! The only vaguely useful thing I can see with that is if you had a function which returned a 2-element array: var Name = getNames()[Gender == 'm']; ...but that's even LESS readable! – nickf Oct 2 '08 at 2:03
vote up 0 vote down

How would anyone win an obfuscated code contest without the ternary operator?!

I'm personally for using it, when appropriate, but I don't think I'd ever nest it. It's very useful, but it has a couple knocks against it in that it makes code harder to read and is in use in some other languages in other operations (like Groovy's null-check).

link|flag
vote up 0 vote down

For simple if cases, I like to use it. Actually it's much easier to read/code for instance as parameters for functions or things like that. Also to avoid the new line I like to keep with all my if/else.

Neseting it would be a big NO-NO in my book.

So, resuming, for a single if/else I'll use the ternary operator. For other cases a regular if/else if/else (or switch)

link|flag
vote up 0 vote down

Interesting anecdote: I have seen the optimizer weigh ternary operator as less "heavy" for the purposes of inlining than the equivalent if. I noticed this with Microsoft compilers, but it could be more widespread.

In particular functions like this would inline:

int getSomething()
{
   return m_t ? m_t->v : 0;
}

But this wouldn't:

int getSomething() 
{
    if( m_t )
        return m_t->v;
    return 0;
}
link|flag
vote up 0 vote down

I typically use in things like this:

before:

if(isheader)
    drawtext(x,y,WHITE,string);
else
    drawtext(x,y,BLUE,string);

after:

    drawtext(x,y,isheader==true?WHITE:BLUE,string);
link|flag
Of course in most languages, you wouldn't need the "==true" part of that ternary either. – Michael Haren Oct 2 '08 at 3:16
I realize that, although I tend to put it in just to make the code more readable since the compiler should optimize it to the same thing as without the ==true anyways – KPexEA Oct 2 '08 at 16:49
in no language can you possibly need "==true" – niXar Jan 7 '09 at 23:13
vote up 0 vote down

I like it a lot. When I use it, I write it like an if-then-else: one line each for condition, true action, and false action. That way, I can nest them easily.

Example:

x = (a == b 
     ? (sqrt(a)-2)
     : (a*a+b*b)
     );

x = (a == b 
     ? (sqrt(a)-2)
     : (a*a+b*b)
     );
x = (a == b 
     ? (c > d
        ? (sqrt(a)-2)
        : (c + cos(d))
       )
     : (a*a+b*b)
     );

To me, this is reasonably easy to read. It also makes it easy yo add subcases or change existing cases.

link|flag
I thought I was a huge fan until I saw that example. That would take some getting used to. I use them for one-liners, not blocks. – Michael Haren Oct 2 '08 at 3:33
Just go buy yourself a Lisp, you closeted homoschemual. – niXar Jan 7 '09 at 23:14
vote up 0 vote down

if your ternary operator ends up taking the whole screen width, then I wouldn't use it. I keep it to just checking one simple condition and returning single values:

int x = something == somethingElse ? 0 : -1;

We actually have some nasty code like this in production...not good:

int x = something == (someValue == someOtherVal ? string.Empty : "Blah blah") ? (a == b ? 1 : 2 ): (c == d ? 3 : 4);
link|flag
There is actually a language where writing string.Empty makes any sense? What happened to ""? – niXar Jan 7 '09 at 23:17
vote up 0 vote down

The ternary operator is extremely useful for concisely producing comma separated lists. Here is a Java example:

    int[] iArr = {1,2,3};
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < iArr.length; i++) {
        sb.append(i == 0 ? iArr[i] : "," + iArr[i]);
    }
    System.out.println(sb.toString());

produces: "1,2,3"

Otherwise, special casing for the last comma becomes annoying.

link|flag
vote up 0 vote down

If you are trying to reduce the amount of lines in your code or are refactoring code, then go for it.

If you care about the next programmer that has to take that extra 0.1 millisecond to understand the expression, then go for it anyways.

link|flag
vote up 0 vote down

One reason noone seems to mention for using the ternary operator, at least in languages like D that support type inference is to allow type inference to work for amazingly complicated template types.

auto myVariable = fun();  
// typeof(myVariable) == Foo!(Bar, Baz, Waldo!(Stuff, OtherStuff)).

// Now I want to declare a variable and assign a value depending on some
// conditional to it.
auto myOtherVariable = (someCondition) ? fun() : gun();

// If I didn't use the ternary I'd have to do:
Foo!(Bar, Baz, Waldo!(Stuff, OtherStuff)) myLastVariable;  // Ugly.
if(someCondition) {
    myLastVariable = fun();
} else {
    myLastVariable = gun():
}
link|flag

Your Answer

Get an OpenID
or

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