WXPlanModel wxPlanModel = new WXPlanModel();
// 实例
Class clazz = wxPlanModel.getClass();
Method method = clazz.getDeclaredMethod("需要反射调用的方法名", String.class);//这里的demo,参数是一个String的,多个参数逗号相隔
method.invoke(wxPlanModel, "传入的参数");
快速上手反射就是这样,虽然说反射在运行时执行,效率会略低,但是现在的计算机硬件配置都很高,大多数业务场景都基本可以忽略;其实,最终还是要看业务场景决定;