当前位置:  开发笔记 > 编程语言 > 正文

if/else和if/elseif

如何解决《if/else和if/elseif》经验,为你挑选了2个好方法。

如果我有这样的语句块:

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

或者像这样:

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

有什么不同?

似乎使用if/else,如果part为true状态,​​else部分为所有其他可能选项(false).一个else-if对许多条件都有用.这是我的理解,还有什么我应该知道的吗?



1> sharptooth..:

如果没有"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
}

这与前一个完全相同,但看起来更好,更容易阅读.



2> Frederik Ghe..:

情况a:

if( condition )
{
}
else
{
}

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

情况b:

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

当'condition'为false时,else if块中的语句只会在condition2为true时执行.当condition2为false时,将执行else块中的语句.

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有