gpt4 book ai didi

grails - 在 Groovy 和 Grails 中使用枚举的正确方法

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

我想创建一些全局枚举,供我的整个应用程序使用。

我创建了一个名为 enums 的常规文件,它看起来像这样:

class Enums {
enum GameType{
Game1,
Game2,
Game3
Game4
Game5
}

enum Enum2{
Type1,
Type2,
Type3
}

}

第一个枚举似乎工作正常,但是当我尝试使用第二个枚举时,出现“无法解析类”错误。在 Grails 中使用枚举的正确方法是什么?

最佳答案

每个枚举都应该位于 src/groovy 下的自己的类中。我还建议为他们使用一个包。你的例子应该是

src/groovy/my/example/GameType.groovy:

package my.example
enum GameType{
Game1,
Game2,
Game3,
Game4,
Game5
}

src/groovy/my/example/Enum2.groovy:

package my.example
enum Enum2 {
Type1,
Type2,
Type3
}

关于grails - 在 Groovy 和 Grails 中使用枚举的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22037755/

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