@Retention(RetentionPolicy.RUNTIME),@Target(ElementType.METHOD),@interface是什么意思?
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MoocMethod
{ String value(); }
这段代码里面的注解是什么意思,有点懵。。。
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MoocMethod
{ String value(); }
这段代码里面的注解是什么意思,有点懵。。。
2018-03-30
举报