vote up 3 vote down star

Are following ways are same.(Considering the evaluation time)

if(Condition1)
   {
      //code1
   }
else
   {
      //code2
   }

condition1 ? code1 : code2

Are they just syntactically different?

It may seem a stupid question.But I want to clear my doubt.

flag

4 Answers

vote up 5 vote down check

The difference is that the latter station can be used to return a value based on a condition.

For example, if you have a following statement:

if (SomeCondition())
{
    text = "Yes";
}
else
{
    text = "No";
}

Using a ternary operator, you will write:

text = SomeCondition() ? "Yes" : "No";

Note how the first example executes a statement based on a condition, while the second one returns a value based on a condition.

link|flag
vote up 0 vote down

Yes & Yes.

Only profit is to save lines of code.

link|flag
2  
Not the only one. The second variant can be used to bind a reference to two different object depending on condition, the first one can't be used for that. – sharptooth Nov 2 at 8:17
Right, forgot about that. – Faruz Nov 2 at 9:01
vote up 0 vote down

Well ... In the former case, you can have any amount or type (expression vs statement) of code in place of code1 and code2. In the latter case, they must be valid expressions.

link|flag
vote up 1 vote down

Yes, these are two different syntactical forms and will work identically and most likey identical code will be emitted by the compiler.

link|flag

Your Answer

Get an OpenID
or

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