@参考文章 根据特定字符串加载相应的方法,有人用if else,有人用switch.参数少了或情况少了还好,很多方法真要命,不要紧,java反射拯救你 import java.lang.reflect.Method; public class Test { public static void main(String[] args) throws Exception { Test t=new Test(); Class<? extends Test> c = t.getClass();//Re…