enum 的 name 是如何传进去的呢?
2011/11/9 8:27:07 zwhc http://zwhc.iteye.com
我要评论(0)
- 摘要:enum的name是如何传进去的呢?publicenumEnum01{NANOSECONDS(0),MICROSECONDS(1),MILLISECONDS(2),SECONDS(3);/**theindexofthisunit*/privatefinalintindex;/**Internalconstructor*/Enum01(intindex){this.index=index;}}Enum01en=Enum01.MICROSECONDS;l.info(en.name());-----
- 标签:
enum 的 name 是如何传进去的呢?
public enum Enum01 {
NANOSECONDS(0), MICROSECONDS(1), MILLISECONDS(2), SECONDS(3);
/** the index of this unit */
private final int index;
/** Internal constructor */
Enum01(int index) {
this.index = index;
}
}
Enum01 en = Enum01.MICROSECONDS;
l.info(en.name());
--------------------------
输出:
MICROSECONDS
enum 的 name 是如何传进去的呢?很有些奇怪。
不过,这样用起来很爽啊。
唔,刚才查了一下,可以参考一下这个。
http://www.iteye.com/topic/6556