首页 > 代码库 > 反射执行方法
反射执行方法
笨笨 以爱之名,只为遇见你! 阿正
package Fanshe; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.sql.Connection; import java.util.ArrayList; import utils.Conn; public class FConn { public static void main(String[] args) throws Exception { FConn.fConn1(Conn.class); } public static <T> ArrayList<T> fConn(Class<T> obj) throws Exception { Constructor<?> cons = obj.getDeclaredConstructor(); T newInstance = obj.newInstance(); Method method = obj.getMethod("link", new Class[] {}); method.invoke(newInstance, null); return null; } public static <T> ArrayList<T> fConn1(Class<T> obj) throws Exception { T newInstance = obj.newInstance(); Method m= obj.getDeclaredMethod("link"); m.invoke(newInstance); return null; } }
反射执行方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。