Groovy - if 语句



第一个决策制定语句是 if 语句。此语句的常规形式如下 −

if(condition) { 
   statement #1 
   statement #2 
   ... 
}

此语句的一般工作原理是首先在if语句中求值一个条件。如果条件为真,则执行语句。下图显示了 if 语句的流程。

If Statement

接下来是 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"); 
      } 
   } 
}

在上例中,我们首先将变量初始化为值 2。然后,我们求值变量的值,然后决定是否执行 println 语句。上述代码的输出如下 −

The value is less than 100
groovy_decision_making.htm
广告