反射执行方法

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;
    
}

}


 

以上是关于反射执行方法的主要内容,如果未能解决你的问题,请参考以下文章

关于用java反射调用一个类里面的方法并执行

能不能用反射来找到当前正在执行的方法的名字?

为啥我的 Ray March 片段着色器反射纹理查找会减慢我的帧速率?

Golang实践录:反射reflect的一些研究及代码汇总

OpenGL片段着色器不照亮场景

Java反射创建带构造参数的类 并执行方法