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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. Method methodShow=TestArguments.class.getMethod("show",void.class);
  2.         methodShow.invoke(null,null);//这么写报NoSuchMethodException 该怎么写呢?
复制代码

这是show 方法
  1. class TestArguments
  2. {       
  3.         public static void main(String[] args)
  4.         {
  5.                 show();
  6.                 for(String arg:args)
  7.                 {
  8.                         System.out.println(arg);
  9.                 }
  10.                 System.out.println("hello");
  11.         }
  12.         public static void show() {
  13.                 // TODO Auto-generated method stub
  14.                 System.out.println("sss");
  15.         }
  16. }
复制代码

0 个回复

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