I recently discovered the shorthand if statement and after searching online I couldn't find a definite answer.

Is it possible to execute 2 statements if the condition is true/false?

int x = (expression) ? 1 : 2;

for example

int x = (expression) ? 1 AND 2 : 3;

Seeing as i haven't comne across a example where they used it I guess it's not possible but I wouldn't want to miss out.

link|improve this question

Have you tried it yet, or are you waiting for us to do that for you? – Kyle Jun 9 '11 at 21:40
1  
I'm not sure I understand. You want x to be 1 and 2 at the same time? If you're thinking about nesting ternary if-tests, yes, it is possible. – whirlwin Jun 9 '11 at 21:41
feedback

3 Answers

up vote 4 down vote accepted

You're talking about conditional assignment. You should look at what is defined by what you've written:

int x = (expression) ? 1 AND 2 : 3;

That is evaluating 'expression' and if true executing '1 AND 2' then assigning the value to x. If 'expression' evaluated to false, '3' is evaluated and assigned to x. Hence you could definitely do something like this:

int x = (expression) ? GetInt1() + GetInt2() : 345;

What is important is that what you have found is not just a shorthand if. It is conditional assignment.

link|improve this answer
I see the thinking fault I made and you are right – Patrick Jun 9 '11 at 21:45
it's an assignment to a conditional expression. – Andy Thomas-Cramer Jun 9 '11 at 22:22
feedback

You can't have a statement return two values and that's all that ternary does. It is not a shorthanded if it is a method persay that returns values

link|improve this answer
feedback
bool x = (1<2) ? (1==2) || (1==1) : false;

Something like this does work, I guess...

link|improve this answer
You probably don't want to go around assigning booleans to ints though.. – Mike Kwan Jun 9 '11 at 21:42
it returns a bool... not an int! – anirudh4444 Jun 9 '11 at 21:43
1  
Well yes.. after you changed it – Mike Kwan Jun 9 '11 at 21:44
:D hehehheh!!!! – anirudh4444 Jun 9 '11 at 21:44
feedback

Your Answer

 
or
required, but never shown

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