06 2015 档案

摘要:1 import java.text.DateFormat; 2 import java.text.ParseException; 3 import java.text.SimpleDateFormat; 4 import java.util.Calendar; 5 import jav... 阅读全文
posted @ 2015-06-29 16:40 长安绝响 阅读(304) 评论(0) 推荐(0)
摘要:如何定义一个枚举类?1 //定义了4个等级2 enum Level{3 A,B,C,D4 }枚举类的实质:1 class Level{2 public static final Level A = new Level();3 public static final Level... 阅读全文
posted @ 2015-06-22 13:13 长安绝响 阅读(1926) 评论(0) 推荐(1)