我想使用预期属性的值或指定的默认值。如何在 groovy 中实现这一点?
让我们看一下这个例子:
def printName(object) {
//if object has initialized property 'name' - print 'name', otherwise print ToString
if (object<some code here>name && object.name) {
print object.name
} else {
print object
}
}