Groovy

書式
this.メンバー変数 =値

使用例

class Arkgame {//変数の宣言 int age =456;//メソッドを定義 public int getAge() {//thisキーワードを使用 ...

Groovy

書式
map変数名.each{ key,value -> println “キー: “+ key + ” 値: ” + value }

使用例

class ...

Groovy

書式
リスト名.each { 変数名 -> println 変数名}
使用例

class Arkgame { static void main(String//暗黙の変数itを使用 cftLst.each{ ...

Groovy

書式
static int 変数名
使用例

class Arkgame {//external変数の宣言 static int age = 56;//メソッドを定義 public static int getAg ...

Groovy

書式
クラス名 インスタンス名 = new クラス名();
インスタンス名.メソット名(引数)
使用例

//クラスArkgameの定義class Arkgame {//変数の宣言 int age;//ge ...

Groovy

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

使用例

class Example { static int sumFunc(int x, int y=3, int z) { i ...

Groovy

書式
定義 static void メソッド名(int x, int y=3, int z)
使い方 メソッド名(6,8)
使用例

class Example { static void sumFunc( ...

Groovy

書式
staic void メソッド名(引数1,引数2…)
使用例

class Example { static void sumFunc(int x, int y, int z) { int res ...

Groovy

書式
static def メソッド名()

使用例

class Example {  static def TestFunc() { println("引数なしのメソットの定義のサンプル"); } stati ...

Groovy

ダウンロード
操作方法
1.「groovy-3.0.7.msi」をダブルクリックしてインストーラーを起動します。

2.「Next」をクリックします。

3.「I accept the t

Groovy

書式
1.シングルクォート ‘文字列’
2.ダブルくぉーと ”文字列”

使用例

class SampleArk { static void main(S ...

Groovy

書式
for(変数名 in マップ名)

使用例

class Arkmple { static void main(String; println "Mapの要素が下記"//forループ for(ele in ...

Groovy

書式
文字列A.concat(文字列B)
使用例

class SampleArk { static void main(String[] args) { String strA = "study skill"// ...

Groovy

書式
${式}
使用例

class SampleArk { static void main(String[] args) { def strA = 'arkgame' println strA println ...

Groovy

書式
変数名 <<= 文字列
使用例

class SampleArk { static void main(String[] args) { String strA = "study"//文字列を追加 ...

Groovy

書式
if(条件式)
break;
使用例

class Arkmple { static void main(String cft = ;//forループ for(int i in cft) { prin ...

Groovy

書式
for(変数名 in 配列名)

使用例

class Arkmple { static void main(String cft = ; println "配列の要素"//forループ for(int e ...

Groovy

書式
for(変数名 in 範囲)

使用例

class Arkmple { static void main(String[] args) { println "指定範囲の要素"//forループ for(in ...