例如写一个注解@PrintTime
如下:
import java.lang.annotation.*;
//下面的注解属于元注解
@Target({ElementType.PARAMETER,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface PrintTime {
/**
* 注解的属性
*/
public String title() default "";
}
使用: