「Groovy」範囲に指定インデックスの値を取得する

2021年8月31日

書式
Object get(int index)
範囲変数名.get(インデックス)
使用例

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.get(7));
println(cft.get(10));
}
}
class Arkxample { static void main(String[] args) { // def 整数の範囲 def cft = 2..12; //範囲に指定インデックス println(cft.get(7)); println(cft.get(10)); } }
class Arkxample { 
   static void main(String[] args) { 
      // def 整数の範囲
      def cft = 2..12; 
      
      //範囲に指定インデックス		
      println(cft.get(7)); 
      println(cft.get(10)); 
   } 
}

実行結果
9
12

Groovy

Posted by arkgame