Is there really any difference between using
If(this)
{
}
Else If(that)
{
}
Else
{
}
or using,
If(this)
{
}
If(that)
{
}
Else
{
}
?
Does one execute any faster? Does the compiler or architecture make any difference?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s the huge difference that the contents of the
this-block and thethat-block can both be executed in the second form, whereas the first form allows at most one of those to be executed.Compare these two Python snippets:
and
As others have mentioned, you generally shouldn’t be concerned about performance between these variations so much as you should be concerned about correctness. However, since you asked… all else being equal, the second form will be slower because the second conditional must be evaluated.
But unless you have determined that code written in this form is a bottleneck, it’s not really worth your effort to even think about optimizing it. In switching from the first form to the second, you give up the jump out of the first if-statement and get back a forced evaluation of the second condition. Depending on the language, that’s probably an extremely negligible difference.