(Java)反射与文档注释
作者:互联网
package com.reflect.test;
/**
* @author Alina
* @date 2022年02月01日 6:09 下午
*/
public class Demo1 {
public void method(){
System.out.println("Demo1...method");
}
}
package com.reflect.test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.TYPE}) //作用于类
@Retention(RetentionPolicy.RUNTIME)
public @interface pro {
String className();
String methodName();
}
package com.reflect.test;
import java.lang.reflect.Method;
/**
* @author Alina
* @date 2022年02月01日 6:21 下午
*/
@pro(className = "com.reflect.test.Demo1",methodName = "method")
public class ReflectTest {
public static void main(String[] args) throws Exception{
//1.解析注解
//获取该类的字节码文件对象
Class reflectTestClass = ReflectTest.class;
//获取字节码对象的注解文件
pro an = (pro) reflectTestClass.getAnnotation(pro.class);
//调用注解对象中的方法
String className = an.className();
String methodName = an.methodName();
//加载该类到内存
Class cls = Class.forName(className);
//创建对象
Object obj = cls.newInstance();
//获取对象方法
Method method = cls.getMethod(methodName);
//执行方法
method.invoke(obj);
}
}
标签:Java,String,java,pro,注释,文档,import,methodName,method 来源: https://blog.csdn.net/weixin_45534263/article/details/122765427