枚举类型(Enumerated Type) 什么是枚举? 枚举是一个被命名的整型常数的集合.在多种编程语言中都有使用(C/C++/c#/java等). 示例 public enum Size { S, M, L }; 为什么使用枚举? 在JDK1.5 之前,定义常量都是: public static fianl …… . 类常量 public class Size { public static final int S = 1; public static final int M = 2; pu…