本帖最后由 homeless 于 2014-3-10 16:23 编辑
定义了个空注解类- //@Target(ElementType.PACKAGE )
复制代码 把//@Target(ElementType.PACKAGE )的注释放开后,下面的全挂了。提示不能使用:
Description Resource Path Location TypeThe annotation @YevxAnnotation is disallowed for this location AnnotationTest.java /javaenhance/src/com/day2 line 7 Java Problem
求指点。。。。。。。
下面的是我的测试类:
- @YevxAnnotation //使用了类注解
- public class AnnotationTest {
- @YevxAnnotation //使用了类成员注解
- private int age;
-
- @YevxAnnotation //使用了构造方法注解
- public AnnotationTest(){
-
- }
- @YevxAnnotation //使用了类方法注解
- public void show(){
- @YevxAnnotation //使用了局部变量注解
- String s="hahahha";
- }
-
- public void xxx(@YevxAnnotation int age){ //使用了方法参数注解
-
- }
- }
复制代码
|