Groovy基本使用

2019-11-22  本文已影响0人  懵逼猴

起步 hello word

  1. 进入官网下载页面下载SDK(默认机器已经安装JDK)
    image.png
  2. 使用tar -xf 文件名称进行解压
  3. 使用idea创建groovy的项目,点击create选择刚刚解压的项目


    image.png
  4. 创建一个Groovy类,输入如下的代码
class HelloWorld {
    static void main(String[] args) {
        // Using a simple println statement to print output to the console
        println('Hello World');
    }
}
  1. 右键运行,就可以看到控制台输出


    image.png

基础使用

class Example { 
   static void main(String[] args) { 
      def range = 5..10; // 定义了一个简单的整数范围,存储到一个局部变量称为范围内的下限为0和上限为5
      println(range); 
      // 5..10
      println(range.get(2)); 
      // 7
   } 
}
// 简单例子
class Example { 
   static void sum(int a, int b = 5) { 
      int c = a+b; 
      println(c); 
   } 
    
   static void main(String[] args) {
      sum(6); 
   } 
}
上一篇下一篇

猜你喜欢

热点阅读