- Method methodShow=TestArguments.class.getMethod("show",void.class);
- methodShow.invoke(null,null);//这么写报NoSuchMethodException 该怎么写呢?
复制代码
这是show 方法
- class TestArguments
- {
- public static void main(String[] args)
- {
- show();
- for(String arg:args)
- {
- System.out.println(arg);
- }
- System.out.println("hello");
- }
- public static void show() {
- // TODO Auto-generated method stub
- System.out.println("sss");
- }
- }
复制代码 |
|