编写一个类,增加一个实例方法用于打印一条字符串。并使用反射手段创建该类的对象, 并调用该对象中的方法
package day23;
import java.lang.reflect.Method;
public class ReflectString {
public static void main(String[] args)throws Exception {
ReflectString rs =(ReflectString)ReflectString.class.newInstance();
Method method=ReflectString.class.getMethod("sop",String.class);
method.invoke(rs,"黑马程序员,我来了");
}
public static void sop(String str){
System.out.println(str);
}
} |
|