本帖最后由 郝福明 于 2013-1-5 08:59 编辑
enum CourseType {
chinese, math, english;
public String toString() {
switch (this) {
case chinese:
return "语文";
case math:
return "数学";
case english:
return "英语";
}
return null;
}
private CourseType() {
}
枚举类的构造函数是私有的,那在其他的类中不就不能调用了么,那还要它干嘛 |