enum 的 name 是如何传进去的呢?_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > enum 的 name 是如何传进去的呢?

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

  • 相关文章
发表评论
用户名: 匿名