package variable
//参数是闭包的方法,一定要到方法里面看一下调用时闭包的参数
//字符串与闭包的结合使用
//1:遍历字符串each,参数接收 闭包
String str='the 4hel5lo and6 groovy'
str.each {
String temp-> print temp.multiply(2)//tthhee hheelllloo aanndd ggrroooovvyy //multiply方法是将字符扩充几倍,each方法遍历的返回值是调用者本身
}
//2:find方法,通过find 方法查找符合条件的第一个字符并返回,参数也是闭包
println str.find{
String s-> s.isNumber()
}//4
//findAll,返回所有符合条件的,返回一个list
def list=str.findAll{
String s->s.isNumber()
}
println(list.toListString())//456 ,list转换为string:toListString
//any方法,只要有符合条件的,就返回true
def result =str.any{
String s-> s.isNumber()
}
println(result)//true
//every方法,判断每一个是否符合条件
def result2=str.every {
String s->s.isNumber()
}
println(result2)//false
//collect方法:对字符串的每一个字符进行操作,并返回一个list
def list2=str.collect {
it.toUpperCase()
}
println(list2.toListString())//[T, H, E, , 4, H, E, L, 5, L, O, , A, N, D, 6, , G, R, O, O, V, Y]
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦