Using Ternary Operator in C for If Else & Else If

  • Thread starter Thread starter camel-man
  • Start date Start date
  • Tags Tags
    Operator
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
13 replies · 4K views
camel-man
Messages
76
Reaction score
0
I was wondering if anyone knew if it is possible to construct an if else if with the ternary operator in C.

I know that we can use it for if else, but what if you wanted multiple conditions for else if in your statement?

Code:
printf("%d",(a>5)?1:(a<5)?0:10);
//Just a silly example
perhaps?
 
Physics news on Phys.org
I think you can do the nested ternary ops but you can't insert arbitrary java code in there. It must be an expression.

You could use a user-defined boolean function for the condition and other functions for the result which in effect does the same thing but its probably harder to read in the long run for short if/else type work.

double y = <some-user-boolean-function>(a,b,c) ? <some-user-function-returns-a-double>(a,b,c) : <some-other-user-function-that-returns-a-double(a,b,c);
 
Last edited:
Sure. It's just another operator. So,

Code:
// Example 1, various assignments to x via conditional statements.
if (cond1)
   x = val1;
else if (cond2)
   x = val2;
else if (cond3)
   x = val3;
else
   x = val4;

// Example 2, various assignments to y via conditional statements.
if (cond1)
   if (cond2)
      if (cond3)
         y = val3;
      else
         y = val2;
   else
      y = val1;
else
   y = val4;

Writing these using the ternary operators:
Code:
// Example 1, as a single assignment statement using multiple ternary operators
x = cond1 ? val1 : cond2 ? val2 : cond3 ? val3 : val4;

// Example 2, as a single assignment statement using multiple ternary operators
y = cond1 ? cond2 ? cond3 ? val3 : val2 : val1 : val4;

You may want to use parentheses. That ternary operator evaluates right to left combined with where it lives in the C-family precedence table can lead to some surprising interpretations by the compiler.
 
I like Serena said:
Please consider that if you use such expressions in a software firm, it's likely that your colleagues will want to cut off your hands. ;)
Sure. In most cases (the vast, vast majority of cases) it's better to use if statements or a case statement instead of a complex expression using ternary operators. In many software firms chaining the ternary operator is verboten. Some places simply make the ternary operator verboten, period. Some people just don't grok functional programming so they ban its appearance in any form.

There are a few cases where would I prefer the ternary operator, even chained. Clear, concise, functional. However, I can't use the ternary operator because I tend to work on projects that forbid its use. Rats! Double rats, as I am the author of the stupid coding standards on many of those projects. (I'm quite aware that quite a few people just can't grok functional programming.)
 
D H said:
Sure. In most cases (the vast, vast majority of cases) it's better to use if statements or a case statement instead of a complex expression using ternary operators. In many software firms chaining the ternary operator is verboten. Some places simply make the ternary operator verboten, period. Some people just don't grok functional programming so they ban its appearance in any form.

There are a few cases where would I prefer the ternary operator, even chained. Clear, concise, functional. However, I can't use the ternary operator because I tend to work on projects that forbid its use. Rats! Double rats, as I am the author of the stupid coding standards on many of those projects. (I'm quite aware that quite a few people just can't grok functional programming.)

If you like functional programming check out Scala, a better Java than Java. Its a combination of functional and OO programming styles.

http://www.scala-lang.org/
 
Just be aware that it is immoral to write code that is really tough for others to read. Agree with the "cut off your hands" comments above. :-)
 
harborsparrow said:
Just be aware that it is immoral to write code that is really tough for others to read. Agree with the "cut off your hands" comments above. :-)

and then there's APL, a true write-only language of great power, simplicity and obfuscation that upon writing your program you can never ever hope to figure out what it does in finite time but at least you have the opportunity to rewrite it if you want.
 
jedishrfu said:
and then there's APL, a true write-only language of great power, simplicity and obfuscation that upon writing your program you can never ever hope to figure out what it does in finite time but at least you have the opportunity to rewrite it if you want.

Ah yes, for those of us that think that
Code:
(setq grok (?: cond1 val1 cond2 val2 cond3 val3 val4))
is too obvious, we can simply write something like
Code:
⍋x
to mean the same thing.
 
I like Serena said:
Functional programming... isn't that where you program fragments like
Code:
(setq grok (?: cond1 val1 cond2 val2 cond3 val3 val4))
just because you can?
Your syntax isn't quite right, and you're using an aspect of Lisp that isn't pure. Fixing both,
Code:
(dosomethingwith (cond ((cond1) val1) ((cond2) val2) ((cond3) val3) (t val4)))

Note the lack of the setq. That's verboten in pure Lisp. Something like C's i=i+1 doesn't make sense in purely functional languages.

Functional programming requires a rather different outlook on programming.
 
D H said:
Your syntax isn't quite right, and you're using an aspect of Lisp that isn't pure. Fixing both,
Code:
(dosomethingwith (cond ((cond1) val1) ((cond2) val2) ((cond3) val3) (t val4)))

Note the lack of the setq. That's verboten in pure Lisp. Something like C's i=i+1 doesn't make sense in purely functional languages.

Functional programming requires a rather different outlook on programming.

The best example for functional programming is in doing a generalized sorting algorithm where the comparison is left for the end programmer to provide. The comparison is placed in a function and the function is passed to the sort function and magically the data is sorted.

Scala has all kinds of examples like this using closures. A closure is a kind of function that is passed to one of many collection iterators that Scala has in its arsenal of programming constructs.