[Groovy]戻り値がありのメソッドを定義する

書式
static 戻り値の型 メソッド名(引数1,引数2,…)

使用例

class Example {

   static int sumFunc(int x, int y=3, int z) {
     int res = x + y -z;
     return res
   } 
      
   static void main(String[] args) {
   println(sumFunc(6,7));
    println(sumFunc(6,8,2));
   } 
}

結果
2
12

Groovy

Posted by arkgame