标签:obj eth 对象 get 反射 getc 实例 pre 获取对象
Class clz = Class.forName("com.reflect.Apple");
Constructor appleConstructor = clz.getConstructor();
Object appleObj = appleConstructor.newInstance();
而如果要调用某一个方法,则需要经过下面的步骤:
Method setPriceMethod = clz.getMethod("setPrice", int.class);
setPriceMethod.invoke(appleObj, 14);
标签:obj eth 对象 get 反射 getc 实例 pre 获取对象
原文地址:https://www.cnblogs.com/Roni-i/p/10908351.html