java游戏编译后运行在哪里?
两种运行方式:
1,写一个main类,在public静态void main (string [] args)中初始化游戏类,然后运行游戏。
2,写一个公共类添加代码块。
静态{
Try{初始化游戏类;........;System.exit(1)}
catch(例外){
System.out.println("程序因"+ex.getMessage()+"而退出。");
system . exit(1);
}
}