gpt4 book ai didi

grails - grails-最小/最大约束无法进行 float ?

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

我有这个课:

class SomeClass {

float percent

static constraints = {
percent(min:1.0F, max:100.0F)
}
}

当我启动应用程序时,出现错误:
Parameter for constraint [min] of property [percent] of class [class SomeClass] must be the same type as property: [float]

这是错误还是我在做什么错?

最佳答案

我认为您应该使用小的f而不是F:

static constraints = {
percent(min:1.0f, max:100.0f)
}

要么

尝试将 percent的类型更改为 Float,那么1.0F应该有效

关于grails - grails-最小/最大约束无法进行 float ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33674148/

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