A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. *
  2. * 6、编写一个类,增加一个实例方法用于打印一条字符串。
  3. * 并使用反射手段创建该类的对象, 并调用该对象中的方法。
  4. * */
  5. //对象的打印方法
  6. class Println{
  7.         public void println(String str){
  8.                 System.out.println(str);
  9.         }
  10. }
  11. public class Test19 {
  12.         public static void main(String[] args) throws Exception {
  13.                 Class<?> clazz = Class.forName("com.itheima.Println");//通过反射的方式获取该类的字节码文件
  14.                 Method method = clazz.getMethod("println",String.class);//获取字节码对象对应的方法,并指定参数类型。
  15.                 method.invoke(clazz.newInstance(),"黑马程序员训练营我来了");//运行对象中的方法,并传入参数。
  16.         }
  17. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马