「Groovy」範囲に指定インデックスの値を取得する
書式
Object get(int index)
範囲変数名.get(インデックス)
使用例
class Arkxample { static void main(String[] args) { // def 整数の範囲 def cft = 2..12; //範囲に指定インデックス println(cft.get(7)); println(cft.get(10)); } }
実行結果
9
12
Coding Changes the World
書式
Object get(int index)
範囲変数名.get(インデックス)
使用例
class Arkxample { static void main(String[] args) { // def 整数の範囲 def cft = 2..12; //範囲に指定インデックス println(cft.get(7)); println(cft.get(10)); } }
実行結果
9
12