这代码有什么问题?我执行后,抛出大堆异常,输出1000个Hello World!
import java.lang.reflect.*;
public class hi 
{
public static void main(String[] args) 
{
try{
Class.forName("hi").getMethod("main",new Class[]{String[].class}).invoke(null,new Object[]{new String[0]});//相当于new hi()??
}catch(Exception e){System.out.println(e);}
System.out.println("Hello World!");
}
}