博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Groovy基本类型与运算符
阅读量:6714 次
发布时间:2019-06-25

本文共 549 字,大约阅读时间需要 1 分钟。

hot3.png

  1. 字符串

    1.1字符串段落

def s = """Groovy Grails JAVA """  输出结果: Groovy Grails JAVA

            1.2 字符串操作运算符                    

//乘法 assert "hellohello" == "hello" * 2  //减法def st1 = "helloWorld" def st2 = "World"assert "hello" == st1 - st2 //截取字符串def st1 = "helloWorld"assert "hello" == st1[0..4] assert "World" == st1[5..9] assert "World" == st1[-1..-5]   //从右边截取字符串

           1.3数字运算

运算符 名称 方法
a + b a.plus(b)
a | b a.minus(b)
a * b a.multiply(b)
a / b a.div(b)
a % b 取余 a.mod(b)
a++ 后自增 a.next()
a-- 后自减 a.previous()

 

转载于:https://my.oschina.net/u/2289161/blog/822134

你可能感兴趣的文章
【java】eclipse配置tomcat碰到的问题
查看>>
vim 的多窗口, tab 切换_yuhui_bear_百度空间
查看>>
poj2481
查看>>
ECSHOP的lbi库文件中添加广告位的方法
查看>>
Splay树学习
查看>>
Kinect for Windows SDK开发学习相关资源
查看>>
Android 类中类广播的静态注册方法
查看>>
Requests库上传文件时UnicodeDecodeError: 'ascii' codec can't decode byte错误解析
查看>>
MapReduce中,new Text()引发的写入HDFS的输出文件多一列的问题
查看>>
Windows Phone本地数据库(SQLCE):8、DataContext(翻译)
查看>>
SGU 406 Goggle
查看>>
〖Linux〗Shell十进制数值转换十六进制
查看>>
java设计模式--行为型模式--状态模式
查看>>
mysql学习笔记 第六天
查看>>
MVC4 + EF为Model添加单独的验证属性
查看>>
Oracle用游标删除重复数据
查看>>
数组指针
查看>>
OpenStreetMap初探(一)——了解OpenStreetMap
查看>>
安卓表格布局android:collapseColumns,android:shrinkColumns和stretchColumn
查看>>
js中substr与substring的差别
查看>>