- public class Test {
- //用于打印一条字符串的实例方法。
- public static void printString(String s){
- System.out.println(s);
- }
- public static void main(String[] args) throws Exception{
- //反射创建对象
- Test t=Test.class.newInstance();
- //反射调用对象中的方法
- Test.class.getMethod("printString",String.class).invoke(t, new String("abc"));
- }
- }
复制代码
是这个意思吗? |