国产探花免费观看_亚洲丰满少妇自慰呻吟_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 類, 自行定義。}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 广平县| 紫金县| 吕梁市| 鲁山县| 喀喇沁旗| 新民市| 兴安县| 阿合奇县| 若尔盖县| 德阳市| 泗洪县| 钟祥市| 岫岩| 顺平县| 嫩江县| 鄂托克旗| 卓尼县| 那坡县| 长汀县| 昌吉市| 上饶县| 盐池县| 滨海县| 钟山县| 西林县| 忻城县| 都江堰市| 密云县| 玛沁县| 登封市| 兴海县| 青海省| 恭城| 磴口县| 乌鲁木齐县| 榕江县| 丽江市| 镇沅| 阿尔山市| 福贡县| 志丹县|