黑马程序员技术交流社区

标题: 谁写一个class类型的注解看看啊 [打印本页]

作者: 周靖轩    时间: 2014-8-17 14:34
标题: 谁写一个class类型的注解看看啊
如题,学习中
作者: huangxuanheng    时间: 2014-8-17 16:04
  1. import java.lang.annotation.ElementType;
  2. import java.lang.annotation.Retention;
  3. import java.lang.annotation.RetentionPolicy;
  4. import java.lang.annotation.Target;
  5. //目标:属性,方法,参数的注释
  6. @Target({ElementType.FIELD,ElementType.METHOD,ElementType.PARAMETER})
  7. //运行时
  8. @Retention(RetentionPolicy.RUNTIME)
  9. public @interface Type_Method_Parameter_Annotation{
  10.         //用来描述属性|方法|参数
  11.         String describe();
  12.         //用于定义属性、方法、参数的引用类型
  13.         Class type()default void.class;
  14. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2