博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
groovy-真值
阅读量:6261 次
发布时间:2019-06-22

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

Boolean expressions

Groovy支持标准的条件运算符的布尔表达式:

1 def a = true
2 def b = true
3 def c = false
4 assert a
5 assert a && b
6 assert a || c
7 assert !c

此外,Groovy中有强制转换非布尔对象为布尔值的特殊规则。

集合

空集合会被强制转换为false:

1 def numbers = [1,2,3]
2 assert numbers //true, as numbers in not empty
3 numbers = []
4 assert !numbers //true, as numbers is now an empty collection

迭代器和枚举

没有进一步元素的枚举和迭代器都会被强制转换为false:

1 assert ![].iterator() // false because the Iterator is empty
2 assert [0].iterator() // true because the Iterator has a next element
3 def v = new Vector()
4 assert !v.elements() // false because the Enumeration is empty
5 v.add(new Object())
6 assert v.elements() // true because the Enumeration has more elements

Map

非空的map被强制转换为true:

1 assert ['one':1]
2 assert ![:]

Matchers

当匹配到正则表达式的模式的时候会强制转换为true:

1 assert ('Hello World' =~ /World/) //true because matcher has at least one match

Strings

非空的Strings, GStrings 和CharSequences 将被强制转换为true:

1 <div>
2 <div>
3 <pre><code data-result="[object Object]">// Strings
4 assert 'This is true'
5 assert !''
6 //GStrings
7 def s = ''
8 assert !("$s")
9 s = 'x'
10 assert ("$s")

 

Numbers

非0的数值被强制转换为true,就如同perl一样。

1 <div>
2 <div>
3 <pre><code data-result="[object Object]">assert !0 //yeah, 0s are false, like in Perl
4 assert 1  //this is also true for all other number types

 

Object references

非null的对象引用被强制转换为true:

 
1 assert new Object()
2 assert !null

转载地址:http://ndqsa.baihongyu.com/

你可能感兴趣的文章
Xcode Debug调试汇总
查看>>
设计模式:再严谨的单例也尽量不要使用
查看>>
TiDB at 丰巢:尝鲜分布式数据库
查看>>
三篇文章了解 TiDB 技术内幕 —— 谈调度
查看>>
Next.js踩坑入门系列(六) —— 再次重构目录
查看>>
1. Context - React跨组件访问数据的利器
查看>>
Git常用操作、提交到GitHub等
查看>>
Android基础 四大组件之广播(Broadcast)
查看>>
SQL优化器原理 - 查询优化器综述
查看>>
TODO list小工具,给自己一个交代
查看>>
iOS Notification 与多线程
查看>>
NLP系列学习:概率图模型简述
查看>>
数组分页,返回数据,你用过吗?
查看>>
JEESZ-kafka消息服务平台实现
查看>>
(四)构建dubbo分布式平台-maven代码结构
查看>>
解读Node核心模块Stream系列一(Writable和pipe)
查看>>
自我绘制三
查看>>
区块链开发、以太坊开发的技术资料资源汇总
查看>>
CSS 技巧篇(五):理解CSS优先度
查看>>
使用vue解决复杂逻辑
查看>>