枚举类型问题,
大家好,偶有问题想问一下
enum 枚举类型 ,是怎么定义的啊,
和怎样使用啊,谢谢。 举个例,好吗?谢了。
/*
* TestEnum.java
*
* Created on 2006年12月4日, 下午7:33
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author lbf
*/
public class TestEnum {
/** Creates a new instance of TestEnum */
public TestEnum() {
}
public static void main(String[] args) {
System.out.println(Season.FALL);
}
}
enum Season{
SPRING,
SUMMER,
FALL,
WINTER;
}