gpt4 book ai didi

groovy - Groovy中变量后面的问号(?)的目的是什么

转载 作者:行者123 更新时间:2023-12-03 07:56:05 26 4
gpt4 key购买 nike

我是 grails 的新手,我在许多示例中发现变量可能以问号 (?)
像这样

boolean equals(other) {
if(other?.is(this))
return true
}

上面的代码包含 If 条件中的另一个以 ?所以我想知道那个表示的含义

最佳答案

?.是一个空安全运算符,用于避免意外的 NPE。

if ( a?.b ) { .. }


if ( a != null && a.b ) { .. }

但在这种情况下 is()已经是空安全的,所以你不需要它
other.is( this )

应该不错。

关于groovy - Groovy中变量后面的问号(?)的目的是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24186387/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com