会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Java EE
博客园
首页
新随笔
联系
管理
订阅
枚举类的使用例子
枚举类的使用,有构造函数,有函数哟
package com.bird.test; import org.junit.Test; public class EumeTest { @Test public void print() { String day; day = Week.MON.getValue(); System.out.println(day + Week.MON.getValue1()); } } enum Week { MON("星期一") { public String getValue1() { return "this is the first day."; } }, TUE("星期二") { public String getValue1() { return "this is the first day."; } }, WED("星期三") { public String getValue1() { return "this is the first day."; } }, THU("星期四"){ public String getValue1() { return "this is the first day."; } }, FRI("星期五"){ public String getValue1() { return "this is the first day."; } }, SAT("星期六"){ public String getValue1() { return "this is the first day."; } }, SUN("星期日"){ public String getValue1() { return "this is the first day."; } }; private String value; private Week(String value) { this.value = value; } public String getValue() { return value; } public abstract String getValue1(); }
运行结果:
星期一this is the first day.
posted @
2012-04-03 21:11
Java EE
阅读(
223
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告