共计 607 个字符,预计需要花费 2 分钟才能阅读完成。
要加载特定注解的类,可以使用 Java 的反射机制。
首先,你需要使用 Class.forName()
方法来加载类。该方法接受一个类的完全限定名作为参数,并返回对应的 Class
对象。例如,要加载名为 com.example.MyClass
的类,可以使用以下代码:
Class<?> clazz = Class.forName("com.example.MyClass");
接下来,你可以使用 getAnnotationsByType()
方法来获取特定注解的数组。该方法接受一个注解的 Class
对象作为参数,并返回所有标记了该注解的类的数组。例如,要获取所有标记了 MyAnnotation
注解的类,可以使用以下代码:
MyAnnotation[] annotations = clazz.getAnnotationsByType(MyAnnotation.class);
最后,你可以遍历这个数组,对每个标记了注解的类进行进一步的操作。例如,打印出所有标记了 MyAnnotation
注解的类的类名,可以使用以下代码:
for (MyAnnotation annotation : annotations) {System.out.println(annotation.getClass().getName());
}
请注意,上述代码中的 MyAnnotation
是一个自定义注解,你需要根据实际情况替换为你要加载的特定注解的类。
丸趣 TV 网 – 提供最优质的资源集合!
正文完