实例有限且固定的类成为枚举类 枚举类的实现 早期时候的实现形式: public static final int SEASON_SPRING = 1; public static final int SEASON_SUMMER = 2; public static final int SEASON_FAIL = 3; public static final int SEASON_WINTER = 4; 这种方式虽然实现简单,但存在很多问题: ①类型不安全(二者可运算) ②没有命名空间 ③打印输出…
public class Test { int c; //成员变量(实例变量) static int s1; //静态变量(类变量)(全局变量) public static void main(String[] args){ //static int s2; //局部变量不允许static定义 int b; //局部变量 Test t=new Test(); System.out.println(t.c); //成员变量系统会提供默认初始值,随着对象创建而存在(实例变量) b=1; System…