「Groovy」範囲に低い値を取得するサンプル

2021年8月31日

書式
Comparable getFrom()
範囲の低い値を返す

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
class Arkxample {
static void main(String[] args) {
// def 整数の範囲
def cft = 2..12;
//範囲に指定インデックス
println(cft.getFrom());
}
}
class Arkxample { static void main(String[] args) { // def 整数の範囲 def cft = 2..12; //範囲に指定インデックス println(cft.getFrom()); } }
class Arkxample { 
   static void main(String[] args) { 
      // def 整数の範囲
      def cft = 2..12; 
      
      //範囲に指定インデックス		
      println(cft.getFrom()); 
   } 
}

結果
2

Groovy

Posted by arkgame