groovy if 判断字符串_Groovy If/Else语句

我们将看到的下一个决策语句是if / else语句。这种说法的一般形式是 -if(condition) {

statement #1

statement #2

...

} else{

statement #3

statement #4

}

这个语句的一般工作是首先在if语句中评估一个条件。如果条件为真,则其后执行语句,并在else条件之前停止并退出循环。如果条件为假,则执行else语句块中的语句,然后退出循环。下图显示了if语句的流程。

下面是一个if / else语句的例子 -class Example {

static void main(String[] args) {

// Initializing a local variable

int a = 2

//Check for the boolean condition

if (a<100) {

//If the condition is true print the following statement

println("The value is less than 100");

} else {

//If the condition is false print the following statement

println("The value is greater than 100");

}

}

}

在上面的例子中,我们首先将一个变量初始化为值2.然后我们评估变量的值,然后决定应该执行哪个println语句。上面的代码的输出将是The value is less than 100.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值