📄 invoke.java
字号:
//file: Invoke.javaimport java.lang.reflect.*;class Invoke { public static void main( String [] args ) { try { Class c = Class.forName( args[0] ); Method m = c.getMethod( args[1], new Class [] { } ); Object ret = m.invoke( null, null ); System.out.println( "Invoked static method: " + args[1] + " of class: " + args[0] + " with no args\nResults: " + ret ); } catch ( ClassNotFoundException e ) { // Class.forName( ) can't find the class } catch ( NoSuchMethodException e2 ) { // that method doesn't exist } catch ( IllegalAccessException e3 ) { // we don't have permission to invoke that method } catch ( InvocationTargetException e4 ) { // an exception ocurred while invoking that method System.out.println( "Method threw an: " + e4.getTargetException( ) ); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -