锁定老帖子 主题:java 反射
精华帖 (0) :: 良好帖 (0) :: 灌水帖 (0) :: 隐藏帖 (29)
|
|
---|---|
作者 | 正文 |
发表时间:2011-09-05
package com.googlepages.smallnest.facet;
import java.awt.print.Printable; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method;
public class DynaTest { public static void main(String[] args) throws ClassNotFoundException, SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException { Class cla = Class.forName("com.googlepages.smallnest.facet.Test"); Test t=new Test(); for(int i=0;i<4;i++){ Method method1 = cla.getMethod("print"+i,String.class); method1.invoke(t,"11"); } }
} class Test{ public void print0(String sb){ System.out.println(sb); } public void print1(String sb){ System.out.println(sb); } public void print2(String sb){ System.out.println(sb); } public void print3(String sb){ System.out.println(sb); }
} 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
浏览 2517 次