enum怎么读?
enum音标为[ɪˌnjuːm]
拓展:
1、enum释义:枚举;枚举类型;列举
2、enum造句:
(1)Just as with any constant, all references to the individual values of an enum are converted to numeric literals at compile time.
与任何常量一样,对枚举中各个值的所有引用在编译时均将转换为数值文本。
(2)This creates the Java class with the customized types and a type safe enum Java class, as shown in Listing 7.
这会创建包含定制类型的Java类和类型安全的enumJava类,见清单7。
(3)Enum, Class, and Collections are additional built-in types we've added -- look for some of these in Java EE 6.
枚举、类和集合是我们所增加的额外的内建类型——我们期待在JavaEE6中也能具备这样的类型。
3、enum在C语言中的用法
enum是C语言中的一个关键字,enum叫枚举数据类型,枚举数据类型描述的是一组整型值的集合(这句话其实不太妥当),枚举型是预处理指令#define的替代,枚举和宏其实非常类似,宏在预处理阶段将名字替换成对应的值,枚举在编译阶段将名字替换成对应的值,
我们可以将枚举理解为编译阶段的宏,使用格式:
enum typeName { valueName1, valueName2, valueName3, ...... };