最近学到枚举,在枚举默认父类Enum的源代码中只写一个构造方法如下:
protected Enum(String name, int ordinal) {
this.name = name;
this.ordinal = ordinal;
}
我自己建了个子类枚举gender,他默认构造方法是不是
private gender(){};
难道不是
gender(String name, int ordinal) {
this.name = name;
this.ordinal = ordinal;
}吗?
哪位帮我解决下?
主要在枚举的toString方法里,方法返回值都是return name,我建的枚举对象比如MAN,WOMEN,NONE;,他们都没给name字段赋值呀?怎么返回return name?我彻底糊涂了,写的有点乱,不知道大家知道我说的什么吗 |
|