上一篇:Java常用类——第二部分
当一个类的对象只有有限个且是确定的,则这个类可以称为枚举类。例如:星期:Monday(星期一)、…、Sunday(星期天)
枚举类的实现
枚举类的属性
其他说明
步骤:
例子
class Season {
private final String SEASON_NAME;//季节的名称
private final String SEASON_DESC;//季节的描述
private Season(String seasonName,String seasonDesc){
this.SEASON_NAME = seasonName;
this.SEASON_DESC = seasonDesc;
}
public static final Season SPRING = new Season("春天", "春暖花开");
public static final Season SUMMER = new Season("夏天", "夏日炎炎");
public static final Season AUTUMN = new Season("秋天", "秋高气爽");
public static final Season WINTER = new Season("冬天", "白雪皑皑");
@Override
public String toString() {
return "Season{" +
"SEASON_NAME='" + SEASON_NAME + '\'' +
", SEASON_DESC='" + SEASON_DESC + '\'' +
'}';
}
}
public class SeasonTest {
public static void main(String[] args) {
Season spring = Season.SPRING;
System.out.println(spring);
}
}
使用说明
步骤
例子
enum Season {
SPRING("春天", "春暖花开"),
SUMMER("夏天", "夏日炎炎"),
AUTUMN("秋天", "秋高气爽"),
WINTER("冬天", "白雪皑皑");
private final String SEASON_NAME; // 季节的名称
private final String SEASON_DESC; // 季节的描述
Season(String seasonName,String seasonDesc) {
this.SEASON_NAME = seasonName;
this.SEASON_DESC = seasonDesc;
}
}
public class SeasonTest {
public static void main(String[] args) {
Season spring = Season.SPRING;
System.out.println(spring);
}
}
方法名 | 描述 |
---|---|
values() | 返回枚举类型的对象数组。该方法可以很方便地遍历所有的枚举值 |
valueOf(String str) | 可以把一个字符串转为对应的枚举类对象。要求字符串必须是枚举类对象的“名字”。如不是,会有运行时异常:IllegalArgumentException |
toString() | 返回当前枚举类对象常量的名称 |
说明
例子
interface Info {
void showInfo();
}
enum Season implements Info {
// 枚举值单独实现接口方法
SPRING("春天", "春暖花开") {
@Override
public void showInfo() {
System.out.println("春天");
}
},
SUMMER("夏天", "夏日炎炎") {
@Override
public void showInfo() {
System.out.println("夏天");
}
},
AUTUMN("秋天", "秋高气爽"),
WINTER("冬天", "白雪皑皑");
private final String SEASON_NAME; // 季节的名称
private final String SEASON_DESC; // 季节的描述
Season(String seasonName, String seasonDesc) {
this.SEASON_NAME = seasonName;
this.SEASON_DESC = seasonDesc;
}
// 统一实现接口方法
@Override
public void showInfo() {
System.out.println("这是一个季节");
}
}
public class SeasonTest1 {
public static void main(String[] args) {
Season spring = Season.SPRING;
spring.showInfo();
Season autumn = Season.AUTUMN;
autumn.showInfo();
}
}
从 JDK 5.0 开始,Java 增加了对元数据(MetaData)的支持,也就是 Annotation(注解)
Annotation 其实就是代码里的特殊标记,这些标记可以在编译,类加载,运行时被读取,并执行相应的处理。通过使用 Annotation,程序员可以在不改变原有逻辑的情况下,在源文件中嵌入一些补充信息。代码分析工具、开发工具和部署工具可以通过这些补充信息进行验证或者进行部署。
Annotation 可以像修饰符一样被使用,可用于修饰包,类,构造器,方法,成员变量,参数,局部变量的声明,这些信息被保存在 Annotation 的 “name=value” 对中。
在JavaSE中,注解的使用目的比较简单,例如标记过时的功能,忽略警告等。在JavaEE/Android中注解占据了更重要的角色,例如用来配置应用程序的任何切面,代替JavaEE旧版中所遗留的繁冗代码和XML配置等。
未来的开发模式都是基于注解的,JPA是基于注解的,Spring2.5以上都是基于注解的,Hibernate3.x以后也是基于注解的,现在的Struts2有一部分也是基于注解的了,注解是一种趋势,一定程度上可以说:框架 = 注解 + 反射 + 设计模式
使用 Annotation 时要在其前面增加 @ 符号,并把该 Annotation 当成一个修饰符使用。用于修饰它支持的程序元素
示例一:生成文档相关的注解
其中,@param @return 和 @exception 这三个标记都是只用于方法的
示例二:在编译时进行格式检查(JDK内置的三个基本注解)
示例三:跟踪代码依赖性,实现替代配置文件功能
说明
例子
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD})
@Documented
@Inherited
public @interface MyAnnotation {
String value() default "hello";
}
@MyAnnotation("test")
class AnnotationTest {
}
JDK 的元 Annotation 用于修饰其他 Annotation 定义
JDK5.0提供了4个标准的meta-annotation类型,分别是:
Retention
@Retention:只能用于修饰一个 Annotation 定义,用于指定该 Annotation 的生命周期,@Rentention 包含一个 RetentionPolicy 类型的成员变量,使用 @Rentention 时必须为该 value 成员变量指定值:
Target
@Target:用于修饰 Annotation 定义,用于指定被修饰的 Annotation 能用于修饰哪些程序元素,@Target包含一个 ElementType 类型的数组成员变量,使用 @Target 时必须为该 value 成员变量指定值:
Documented
@Documented:用于指定被该元 Annotation 修饰的 Annotation 类将被 javadoc 工具提取成文档。默认情况下,javadoc是不包括注解的;定义为Documented的注解必须设置Retention值为RUNTIME。
Inherited
@Inherited:被它修饰的 Annotation 将具有继承性。如果某个类使用了被 @Inherited 修饰的 Annotation, 则其子类将自动具有该注解。例如:如果把标有@Inherited注解的自定义的注解标注在类级别上,子类则可以继承父类类级别的注解
例子
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
String value() default "hello";
}
@MyAnnotation("test")
class Test {
}
class AnnotationTest {
public static void main(String[] args) {
Class<Test> testClass = Test.class;
Annotation[] annotations = testClass.getAnnotations();
System.out.println(Arrays.toString(annotations));
}
}
Java 8对注解处理提供了两点改进:可重复的注解及可用于类型的注解。此外,反射也得到了加强,在Java8中能够得到方法参数的名称。这会简化标注在方法参数上的注解。
可重复注解
JDK 8之前实现可重复注解的方式
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
String value() default "hi";
}
@interface MyAnnotations {
MyAnnotation[] value();
}
// 可重复注解
@MyAnnotations({@MyAnnotation("hello"), @MyAnnotation("world")})
class Test {
}
JDK 8实现可重复注解的方式
在需要使用可重复注解的注解上声明@Repeatable,成员值为包含了该注解数组的成员变量的注解的class对象
包含了该注解数组的成员变量的注解的元注解需要与实现可重复注解的注解的元注解相同
例子:
在MyAnnotation上声明@Repeatable,成员值为MyAnnotations.class
MyAnnotation的Target和Retention等元注解与MyAnnotations相同。
@Repeatable(MyAnnotations.class)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
public @interface MyAnnotation {
String value() default "hi";
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
@interface MyAnnotations {
MyAnnotation[] value();
}
@MyAnnotation("hello")
@MyAnnotation("world")
class Test {
}
类型注解
JDK1.8之后,关于元注解@Target的参数类型ElementType枚举值多了两个:TYPE_PARAMETER,TYPE_USE。 在Java 8之前,注解只能是在声明的地方所使用,Java8开始,注解可以应用在任何地方。
@Target({ElementType.TYPE_PARAMETER, ElementType.TYPE_USE})
public @interface MyAnnotation {
String value() default "hi";
}
class Test<@MyAnnotation T> {
public void test() {
List<@MyAnnotation String> list = new ArrayList<>();
}
}
下一篇:Java集合——第一部分