国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

java 反射

2019-11-14 23:22:45
字體:
來源:轉載
供稿:網友
java 反射

package com.reflect;import java.lang.reflect.Method;public class ReflectUitl { public static Method getMethodDemo(Class clazz, String methodName, final Class[] classes) { Method method = null; // methodName 方法名稱, classes 方法類型參數數據 try { method = clazz.getDeclaredMethod(methodName, classes); } catch (NoSuchMethodException e) { try { clazz.getMethod(methodName, classes); } catch (NoSuchMethodException e1) { if (clazz.getSuperclass() == null) { return method; } else { method = getMethodDemo(clazz.getSuperclass(), methodName, classes); } } } return method; } public static Object invoke(Object obj, String methodname, Class[] classes, Object[] object) { Method method = getMethodDemo(obj.getClass(), methodname, classes); method.setaccessible(true); Object inObj = null; try { inObj = method.invoke(obj, object); } catch (Exception e) { System.out.PRintln(e.getMessage()); } return inObj; } public static Object invoke(final Object obj, final String methodName) { return invoke(obj, methodName, new Class[] {}, new Object[] {}); } public static Object invoke(final Object obj, final String methodName, final Class[] classes) { return invoke(obj, methodName, classes, new Object[] {}); } public static void main(String[] args) throws Exception { ReflectUitl.invoke(new Demo2(), "printlnB"); }

  // demo2 類, 自行定義。}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 玉林市| 甘德县| 大庆市| 兴业县| 皮山县| 滦南县| 白河县| 汉源县| 卫辉市| 木里| 章丘市| 舟山市| 灵宝市| 墨竹工卡县| 长白| 体育| 满城县| 唐海县| 镇巴县| 谢通门县| 郓城县| 蓬溪县| 仪陇县| 新巴尔虎右旗| 临泉县| 宜兰县| 从江县| 阿鲁科尔沁旗| 西盟| 云安县| 靖西县| 丽江市| 博客| 宜章县| 留坝县| 二手房| 吉木萨尔县| 江陵县| 汽车| 邹平县| 克东县|