StackOverflow 文档 Kotlin 教程 枚举 初始化 初始化 Created: November-22, 2018 枚举类和任何其他类一样可以有一个构造函数并进行初始化 enum class Color(val rgb: Int) { RED(0xFF0000), GREEN(0x00FF00), BLUE(0x0000FF) } 枚举中的函数和属性枚举