相关文章推荐
豪气的沙滩裤  ·  Connect to a ...·  1 年前    · 
冷冷的萝卜  ·  python - Access Xcom ...·  1 年前    · 
if 语句可以有若干个 else if 语句,它们必须在 else 语句之前。 一旦其中一个 else if 语句检测为 true,其他的 else if 以及 else 语句都将跳过执行。

if...else 语法格式如下:

if ( 布尔表达式 1 ) { // 如果布尔表达式 1的值为true执行代码 } else if ( 布尔表达式 2 ) { // 如果布尔表达式 2的值为true执行代码 } else if ( 布尔表达式 3 ) { // 如果布尔表达式 3的值为true执行代码 } else { // 如果以上布尔表达式都不为true执行代码

Test.java 文件代码:

public class Test { public static void main ( String args [ ] ) { int x = 30 ; if ( x == 10 ) { System . out . print ( " Value of X is 10 " ) ; } else if ( x == 20 ) { System . out . print ( " Value of X is 20 " ) ; } else if ( x == 30 ) { System . out . print ( " Value of X is 30 " ) ; } else { System . out . print ( " 这是 else 语句 " ) ;

以上代码编译运行结果如下:

Value of X is 30

嵌套的 if…else 语句

使用嵌套的 if…else 语句是合法的。也就是说你可以在另一个 if 或者 else if 语句中使用 if 或者 else if 语句。

嵌套的 if…else 语法格式如下:

if ( 布尔表达式 1 ) { // //如果布尔表达式 1的值为true执行代码 if ( 布尔表达式 2 ) { // //如果布尔表达式 2的值为true执行代码

你可以像 if 语句一样嵌套 else if...else。

Test.java 文件代码:

public class Test { public static void main ( String args [ ] ) { int x = 30 ; int y = 10 ; if ( x == 30 ) { if ( y == 10 ) { System . out . print ( " X = 30 and Y = 10 " ) ;

以上代码编译运行结果如下:

X = 30 and Y = 10
  • #0

  •