helloworld.java

来自「java核心编程的部分源码」· Java 代码 · 共 42 行

JAVA
42
字号
 import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException;

/**
* <code>main()</code> invokes "Hello world" reflectively.
**/

public class HelloWorld
{
public static void main( String[] args )
{
Class outClass = System.out.getClass();
Class[] argTypes = new Class[] { String.class };

try
{
Method printMethod = outClass.getMethod( "println", argTypes );
printMethod.invoke( System.out, new Object[] { "Hello World!" } );
}
catch ( NoSuchMethodException e )
{
System.err.println( "Can"t find method: " + e.getMessage() );
}
catch ( SecurityException e )
{
System.err.println( "Can"t find method: " + e.getMessage() );
}
catch ( IllegalAccessException e )
{
System.err.println( "Can"t invoke method: " + e.getMessage() );
}
catch ( IllegalArgumentException e )
{
System.err.println( "Can"t invoke method: " + e.getMessage() );
}
catch ( InvocationTargetException e )
{
System.err.println( "Can"t invoke method, threw: "
+ e.getTargetException().getMessage() );
}
}
} 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?