java枚舉類型與泛型

枚舉類型:取代以往定義常量的方式,同時枚舉類型還提供程序編譯時進行檢查的功能 // 以往定義常量的方法 public interface Constants{ public static final int Constants_A = 1; public static final int Constants_B = 2; } // 用枚舉代替以往的方法 public enum C
相關文章
相關標籤/搜索