gpt4 book ai didi

方法 mod 或 % 的 Groovy 错误

转载 作者:行者123 更新时间:2023-12-03 14:40:17 25 4
gpt4 key购买 nike

我刚开始在 Groovy 中编程,我遇到了这个错误,我想看看是否有人能帮我解决这个问题。

java.lang.UnsupportedOperationException: Cannot use mod() on this number type: java.math.BigDecimal with value: 5
at Script1.hailstone(Script1.groovy:8)
at Script1$hailstone.callCurrent(Unknown Source)
at Script1.hailstone(Script1.groovy:11)
at Script1$hailstone.callCurrent(Unknown Source)
at Script1.hailstone(Script1.groovy:14)
at Script1$_run_closure1.doCall(Script1.groovy:1)
at Script1.run(Script1.groovy:1)

我有以下 Groovy 代码
def list = [1,2,3].findAll{it-> hailstone(it)}

def hailstone(num){
if(num==1){
return 1;
}
println num
println num.mod(2)
if(num.mod(2)==0){
num = num/2;
return 1 + hailstone(num)
}else{
num = 3*num + 1
return 1 + hailstone(num)
}
}


和输出:
2
0
3
1
10
0
5

然后它突然在 5.mod(2) 上抛出错误。

提前致谢。

最佳答案

看起来像'num'被强制转换成BigDecimal,当你打到这条线时num = num/2
如果将 hailstone 方法的签名更改为:def hailstone(int num)它不会崩溃(因为每次调用时参数都会被强制转换为 int),但这可能不会给出你想要的结果,因为你会失去精度,例如当 'num' 为奇数且 num/2 产生十进制值时,该值将被截断。

有关 Groovy 数学运算工作方式(有时令人惊讶)的更多信息,请查看 http://groovy.codehaus.org/Groovy+Math

关于方法 mod 或 % 的 Groovy 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29158399/

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