反射执行方法
Posted 暮雪超霸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反射执行方法相关的知识,希望对你有一定的参考价值。
笨笨 以爱之名,只为遇见你! 阿正
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; } }
以上是关于反射执行方法的主要内容,如果未能解决你的问题,请参考以下文章