「Groovy」基本データ型(byte、short、double)のサンプル

2021年8月31日

書式
int、BigInteger、float、long、BigDecimal、double
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
class Arksample {
static void main(String[] args) {
//int型
int x = 25;
//long型
long y = 340L;
//float型
float fa = 25.56f;
//double型
double db = 20.5e40;
//BigInteger型
BigInteger bi = 40g;
//BigDecimal型
BigDecimal bd = 6.5g;
println(x);
println(y);
println(fa);
println(db);
println(bi);
println(bd);
}
}
class Arksample { static void main(String[] args) { //int型 int x = 25; //long型 long y = 340L; //float型 float fa = 25.56f; //double型 double db = 20.5e40; //BigInteger型 BigInteger bi = 40g; //BigDecimal型 BigDecimal bd = 6.5g; println(x); println(y); println(fa); println(db); println(bi); println(bd); } }
class Arksample { 
   static void main(String[] args) { 
      //int型
      int x = 25; 
            
      //long型
      long y = 340L; 
            
      //float型
      float fa = 25.56f; 
            
      //double型
      double db = 20.5e40; 
            
      //BigInteger型
      BigInteger bi = 40g; 
            
      //BigDecimal型
      BigDecimal bd = 6.5g; 
            
      println(x); 
      println(y); 
      println(fa); 
      println(db); 
      println(bi); 
      println(bd); 
   } 
}

結果
25
340
25.56
2.05E41
40
6.5

Groovy

Posted by arkgame