“Groovy”的版本间的差异
跳到导航
跳到搜索
(→map) |
|||
第43行: | 第43行: | ||
https://www.cnblogs.com/jyan/archive/2012/05/30/2526372.html | https://www.cnblogs.com/jyan/archive/2012/05/30/2526372.html | ||
+ | |||
+ | |||
+ | [https://blog.csdn.net/dora_310/article/details/52877750 Groovy集合(map)] | ||
+ | |||
==Groovy函数调用 == | ==Groovy函数调用 == | ||
2022年8月5日 (五) 02:40的版本
目录
install
sudo apt install groovy groovy-doc #Groovy Version: 2.4.21 JVM: 11.0.8 Vendor: Debian OS: Linux
https://www.osradar.com/install-apache-groovy-ubuntu-debian/
usage
当然也可以直接创建.groovy文件用命令行直接运行。
hello world
emacs e.groovy class Example { static void main(String[] args) { // Using a simple println statement to print output to the console println('Hello World'); } } groovy e.groovy Hello World
注释annotations
多行注释
多行注释以/*开头,并且能在行的任何位置 。以/*开头,包括新的行,直到第一个*/结束都被认为是注释的部分。多行注释可以放于声明的开始或者声明的中间。
map
evan@myxps:~/tmp$ cat 2.groovy def http=[:] println http.size() http['syn'] = 'helo' println http['syn'] println http.size()
https://www.cnblogs.com/jyan/archive/2012/05/30/2526372.html
Groovy函数调用
jenkins and groovy
Jenkins插件groovy-postbuild使用(一)-获取jenkins环境变量值和获取build结果