Java基础——反射和注解

需求:不能改变该类的任何代码。可以创建任意类的对象,可以执行任意方法

用配置文件来做:

主方法:

public class ReflectTest {
    public static void main(String[] args) throws Exception {
        //1.加载配置文件
        	//1.1创建Properties对象
        Properties pro = new Properties();
        	//1.2加载配置文件,转换为一个集合
        ClassLoader classLoader = ReflectTest.class.getClassLoader();
        InputStream is = classLoader.getResourceAsStream("pro.properties");
        pro.load(is);

        //2.获取配置文件中定义的数据
        String className = pro.getProperty("className");
        String methodName = pro.getProperty("methodName");

        //3.加载该类进内存
        Class cls = Class.forName(className);
        
        //4.创建对象
        Object obj = cls.newInstance();
        
        //5.获取方法对象
        Method method = cls.getMethod(methodName);
        
        //6.执行方法
        method.invoke(obj);
    }
}

pro.properties:

className=reflect.Person
methodName=sleep

用注解来代替配置文件:

注解:

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Pro {
    String className();
    String methodName();
}

主方法:

@Pro(className = "reflect.Person",methodName = "sleep")
public class ReflectTest {
    public static void main(String[] args) throws Exception {
        //1.解析注解
        	//1.1获取该类的字节码文件对象
        Class<ReflectTest> reflectTestClass = ReflectTest.class;
        	//1.2.获取上边的注解对象
        	//其实就是在内存中生成了一个该注解接口的子类实现对象
        Pro an = reflectTestClass.getAnnotation(Pro.class);
        
        //2调用注解对象中定义的抽象方法,获取返回值
        String className = an.className();
        String methodName = an.methodName();

        //3.加载该类进内存
        Class cls = Class.forName(className);
        
        //4.创建对象
        Object obj = cls.newInstance();
        
        //5.获取方法对象
        Method method = cls.getMethod(methodName);
        
        //6.执行方法
        method.invoke(obj);
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值