配置
安装groovy
mac环境下可以尝试如下命令安装
brew install groovy
如下表示安装完成
配置环境变量
# 将“export GROOVY_HOME=/opt/homebrew/opt/groovy/libexec”写入bash_profile文件
vim ~/.bash_profile
source ~/.bash_profile
# 确认是否配置完成
groovy -version
数据类型
基本类型
byte | 字节值 |
---|---|
short | 短整型 |
int | 整数 |
long | 长整型 |
float | 32位浮点数 |
double | 64位浮点数 |
char | 64位浮单个字符文字 |
Boolean | 布尔值 |
String | 字符串 |
对象类型
Integer类型等都支持
注释
同JAVA一致,支持单行、多行
// 单行文本注释
/*
* 多行文本注释
*/
变量定义及使用
// 通过def关键字定义局部变量,并赋值
def name = "定义变量"
/*
* 定义变量时没有使用def关键字时
* 表明当前变量是全局变量
*/
value = "全局变量1"
String memo = "指定类型的全局变量"
/**
* 变量引用
*/
println("打印name值:" + name)
println("打印name值:${name}")