首页 > 代码库 > Groovy学习笔记-布尔求值
Groovy学习笔记-布尔求值
1.判断字符串为null或空字符串
def str = nullif(str) println ‘str is not null‘else println ‘str is null‘str = ‘‘if(str) println ‘str is not null‘else println ‘str is null‘/*outputstr is nullstr is null*/
2.集合是否为空或Count ==0
list = nullif(list) println ‘list is not null‘else println ‘list is null‘list = []if(list) println ‘list is not null‘else println ‘list is null‘/*output list is null list is null*/
3.集合新增元素
def list = [‘aaa‘];list<<‘a‘println list
Groovy学习笔记-布尔求值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。