手记

groovy(5)闭包结合基本类型string

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]

原文链接:http://www.apkbus.com/blog-953329-77633.html

0人推荐
随时随地看视频
慕课网APP