nested if-else 嵌套语句这意味着您可以在另一个if or else if语句中使用一个if or else if语句。
nested if - 语法
if(Boolean_expression 1) { //当布尔表达式 1 为true时执行 if(Boolean_expression 2) { //当布尔表达式 2 为true时执行 } }
nested if - 示例
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
参考链接
https://www.learnfk.com/java/nested-if-statements-in-java.html
标签:语句,10,Java,int,30,无涯,nested,嵌套,else From: https://blog.51cto.com/u_14033984/8801989