gpt4 book ai didi

groovy - 使用 elvis 运算符抛出异常 Groovy

转载 作者:行者123 更新时间:2023-12-02 01:23:26 25 4
gpt4 key购买 nike

在我的代码中,我发现我的方法可能返回 null 的情况。在这种情况下,我宁愿抛出异常也不愿返回 null。但是我不想使用常规 if 因为在我看来它看起来很糟糕。参见代码:

class Type{}

@Field Queue<Type> q1 = [] as Queue
@Field Queue<Type> q2 = [] as Queue

Type regularMethod(){
Type toReturn = q1.poll() ?: q2.poll()
if(toReturn == null)
throw new RuntimeException("was null value")
return toReturn
}
Type myMethod(){
return q1.poll() ?: q2.poll() ?: exception()
}

Type exception(){
throw new RuntimeException("was null value")
}

您对在这里使用 elvis 运算符有何看法?它对你来说更具可读性吗?或者谁能​​提出更好的解决方案?

最佳答案

这当然是一个偏好和风格的问题,但我不喜欢它。目标不是获得最少的代码行或最短的代码行。目标应该是最终得到简洁而富有表现力的代码。这通常很简短,但简洁并不是主要目标。我认为 q1.poll() ?: q2.poll() ?: exception() 对于人类来说并不是特别容易解析。

关于groovy - 使用 elvis 运算符抛出异常 Groovy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23832582/

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