種類 | FGESでの型名 | 概要 |
---|---|---|
整数 | Integer | 一つの整数(小数は使えない) |
文字列 | String | 一つの文字列 |
真偽値 | Bool | 真または偽 |
< 1> < 2> < 3> < 4> | 文字列:@s 真偽値:@s", 2,'テスト',true); |
< 1> < 2> < 3> < 4> < 5> | 式2:@d 式3:@d 式4:@d", 3+4,5-7,3*8,10/3); |
< 1> < 2> < 3> < 4> < 5> | 式2:@d 式3:@d 式4:@d", 12345/10*10,12345/100*100,12345/1000*1000,12345%100); |
< 1> < 2> < 3> < 4> < 5> < 6> < 7> < 8> < 9> < 10> < 11> | Integer n;//ローカル変数として Integer 型のオブジェクト n を作成する n=55;//nに55を代入(nの値を55にする) ECL::WaitLastMessage("式1:@d 式2:@d 式3:@d 式4:@d", n,n+10,n*10,n/10); |
< 1> < 2> < 3> < 4> < 5> < 6> < 7> < 8> < 9> < 10> < 11> | Integer n;//ローカル変数として Integer 型のオブジェクト n を作成する n=30;//←ここしか変えていません ECL::WaitLastMessage("式1:@d 式2:@d 式3:@d 式4:@d", n,n+10,n*10,n/10); |
< 1> < 2> < 3> < 4> < 5> < 6> < 7> < 8> < 9> < 10> | ECL::WaitLastMessage("式1:@d 式2:@d 式3:@d 式4:@d", n,n+10,n*10,n/10); n=30; |
< 1> < 2> < 3> < 4> < 5> < 6> < 7> < 8> < 9> < 10> | n=30; n=60;//← nに60を再代入 ECL::WaitLastMessage("式1:@d 式2:@d 式3:@d 式4:@d", n,n+10,n*10,n/10); |
< 1> < 2> < 3> < 4> < 5> < 6> < 7> < 8> < 9> < 10> < 11> < 12> | Integer n2;//ローカル変数として n とは別の Integer 型のオブジェクト n2 を作成する n2=40; n=n2*2;//←この時点で40*2=80が計算されて、nは80になる n2=0;//←n2を0に変更してもnに影響が及ぶことはない ECL::WaitLastMessage("式1:@d 式2:@d 式3:@d 式4:@d", n,n+10,n*10,n/10); |