我有这堂课:
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]
这是一个错误还是我做错了什么?
答案 0 :(得分:0)
我认为你应该使用小f
代替F
:
static constraints = {
percent(min:1.0f, max:100.0f)
}
或
尝试将percent
的类型更改为Float
,然后1.0F应该有效