Groovy - If 语句
第一个决策语句是 if 语句。 这个语句的一般形式是 −
if(condition) { statement #1 statement #2 ... }
这条语句的一般工作是首先在 if 语句中评估一个条件。 如果条件为真,则执行语句。 下图显示了 if 语句的流程。
以下是 if/else 语句的示例 −
class Example { static void main(String[] args) { // 初始化局部变量 int a = 2 //Check for the boolean condition if (a<100) { // 如果条件为真,则打印以下语句 println("The value is less than 100"); } } }
在上面的例子中,我们首先将一个变量初始化为值 2。然后我们评估变量的值,决定是否应该执行 println 语句。 上述代码的输出将是 −
The value is less than 100