6

如果我有这样的语句块:

if (/*condition here*/){ }
else{ }

或像这样:

if (/*condition here*/)
else if (/*condition here*/) {}
else if (/*condition here*/) {}

有什么不同?

似乎对于 if/else,if 部分用于 true 状态,else 部分用于所有其他可能的选项(false)。else-if 对许多条件很有用。这是我的理解,还有什么需要注意的吗?

4

10 回答 10

21

如果没有“elseif”语法,您将不得不编写链式 if 语句来以这种方式处理几种可能的结果之一:

if( str == "string1" ) {
   //handle first case
} else {
    if( str == "string2" ) {
       //handle second case
    } else {
       if( str == "string3" ) {
           //handle third case
       } else {
          //default case
       }
    }
 }

相反,你可以写

if( str == "string1" ) {
   //handle first case
} else if( str == "string2" ) {
   //handle second case
} else if( str == "string3" ) {
   //handle third case
} else {
   //default case
}

这与前一个完全一样,但看起来更好,更容易阅读。

于 2009-03-12T10:17:36.317 回答
15

情况一:

if( condition )
{
}
else
{
}

当上述语句中的条件为 false 时,else 块中的语句将始终被执行。

情况乙:

if( condition )
{
}
else if( condition2 )
{
}
else
{
}

当 'condition' 为 false 时,else if 块中的语句将仅在 condition2 为 true 时执行。当条件 2 为假时,将执行 else 块中的语句。

于 2009-03-12T10:16:11.157 回答
3

许多语言都有这样的语法(这里:ECMAScript Language Specification,所以 JavaScript):

IfStatement :表达式语句语句表达式语句
    if ( ) else
    if ( )

语句
    Block
    VariableStatement
    EmptyStatement
    ExpressionStatement
    IfStatement
    IterationStatement
    ContinueStatement
    BreakStatement
    ReturnStatement
    WithStatement
    LabelledStatement
    SwitchStatement
    ThrowStatement
    TryStatement

StatementList选项
    { }

StatementList :
    声明
    StatementList 声明

因此ifStatement的分支可能包含一个语句块(Block)或其他语句之一(除了Block)。这意味着这是有效的:

if (expr)
    someStatement;
else
    otherStatement;

由于StatementList可能只包含一条语句,因此这些示例等效于前面的示例:

if (expr) {
    someStatement;
} else {
    otherStatement;
}

if (expr)
    someStatement;
else {
    otherStatement;
}

if (expr) {
    someStatement;
} else
    otherStatement;

当我们用otherStatement一个额外的IfStatement替换时,我们得到这个:

if (expr) {
    someStatement;
} else
    if (expr) {
        someOtherStatement;
    }

剩下的只是代码格式化:

if (expr) {
    someStatement;
} else if (expr) {
    someOtherStatement;
}
于 2009-03-12T12:09:55.720 回答
3

强调秋葵所说的。

此外,如果一种语言有一个真正的 elif / elsif / elseif (比如,一个“真正的” else-if 指令,而不是一种通过格式化隐藏起来的嵌套链接),那么编译器可以轻松地在 Abstract语法树(或类似的,请参阅http://en.wikipedia.org/wiki/Abstract_syntax_tree)而不是嵌套它们。

举个例子:

用 C/C++ 说你有:

if (a) {
    X
} else if (b) {
    Y
} else if (c) {
    Z
} else {
    0
}

然后编译器将像这样构建一个 AST 节点:

   a
  / \
 X   b
    / \
   Y   c
      / \
     Z   0

但是如果选择的语言有一个真正的 if-else:

if (a) {
    X
} elif (b) {
    Y
} elif (c) {
    Z
} else {
    0
}

然后 AST 可以更容易地看起来像这样:

   (a--b--c)
   /  /  /  \
  X  Y  Z    0

在这种语言中,“if else”只有在大括号不是强制性的情况下才有可能:

if (a) {
    X
} elif (b) {
    Y
} else if (c) {  // syntax error "missing braces" if braces mandatory
    Z
} else {
    0
}

对应的 AST(如果大括号不是强制性的):

   (a--b)
   /  /  \
  X  Y    c
         / \
        Z   0

这可以使 CFG 分析(http://en.wikipedia.org/wiki/Control_flow_graph)更容易实现(尽管可能没有实际的优化好处;所以恕我直言,它只会让懒惰的程序员受益:D)。

于 2009-03-13T14:20:07.617 回答
2

else if基本上意味着of的else部分if是另一个if语句。

于 2009-03-12T10:15:08.990 回答
2
**if/else**
if(condition)
  statement;
else
   statement;

如果/否则如果/否则

if(condition)
 {
   if(condition)
      statement;
   else 
     statement;
  }   
else if(condition)
{
    if(condition)
     statement;
    else
     statement;
}
else
    statement;

if/else 和 if/else if 也这样使用

于 2019-04-05T06:52:53.453 回答
0

给定一个变量,您将使用简单的if-else结构。当有多个变量并且您有不同的路径来执行不同的可能性时,您将使用if-else if-...-else. 请注意,后者也以else语句结尾。

于 2009-03-12T10:15:27.680 回答
0

你自己已经给出了答案。if/else 用于真/假结果,例如 int=2 或任何其他可能的 int 值,if/elseif 用于超过 2 个结果,例如 int=2 和 int=3 等等。

它还对变量的上下文进行分组。你可以检查每一个结果,比如

if (a == 2) { do one thing };
if (a == 3) { do another thing };
...
if (a != 2 && a != 3 ...) { do something else };

使用 if/else/elseif 可读性更好。

于 2009-03-12T10:31:01.213 回答
0

如果您想检查更多条件,我们可以使用 if..elseif。单一条件,那么我们可以使用 if 或 if...else。

在这里,我无法通过示例上传完整的说明,因此请通过以下链接。

if..else 语句详情
http://allinworld99.blogspot.in/2016/02/ifelse-flow-chart-with-easy-example.html
if...elseif 详情
http://allinworld99.blogspot.in/2016 /02/flow-chart-with-example-for-if-then.html

于 2016-02-22T04:28:21.060 回答
0
import java.util.*;

public class JavaApplication21 {
    public static void main(String[] args) {

        Scanner obj = new Scanner(System.in);
        System.out.println("You are watching an example of if & else if statements");

        int choice, a, b, c, d;
        System.out.println(" Enter 1-Addition & 2-Substraction");

        int option = obj.nextInt();
        switch (option) {
            case (1):
                System.out.println("how many numbers you want to add.... it can add up to 3 numbers only");
                choice = obj.nextInt();
                if (choice == 2) {
                    System.out.println("Enter 1st number");
                    a = obj.nextInt();

                    System.out.println("Enter 2nd number");
                    b = obj.nextInt();

                    c = a + b;

                    System.out.println("Answer of adding " + a + " & " + b + " is= " + c);
                } else if (choice == 3) {
                    System.out.println("Enter 1st number");
                    a = obj.nextInt();

                    System.out.println("Enter 2nd number");
                    b = obj.nextInt();

                    System.out.println("Enter 3rd number");
                    c = obj.nextInt();

                    d = a + b + c;

                    System.out.println("Answer of adding " + a + " , " + b + " & " + c + "  is= " + d);
                }
            case (2):
                System.out.println("how many numbers you want to substract.... it can substract up to 3 numbers only");
                choice = obj.nextInt();
                if (choice == 2) {
                    System.out.println("Enter 1st number");
                    a = obj.nextInt();

                    System.out.println("Enter 2nd number");
                    b = obj.nextInt();

                    c = a - b;
                    System.out.println("Answer of substracting " + a + " & " + b + " is= " + c);
                } else if (choice == 3) {
                    System.out.println("Enter 1st number");
                    a = obj.nextInt();

                    System.out.println("Enter 2nd number");
                    b = obj.nextInt();

                    System.out.println("Enter 3rd number");
                    c = obj.nextInt();

                    d = a - b - c;
                    System.out.println("Answer of substracting " + a + " , " + b + " & " + c + "  is= " + d);
                }
            default:
                System.out.println("no option you have chosen" + option);
        }
    }
}
于 2017-04-01T17:23:20.983 回答