本帖最后由 王家胜 于 2013-12-5 14:24 编辑
没有入口函数是启动不了的
错误: 找不到或无法加载主类 main
你要表达的意思的程序是- import java.io.File;
- public class nomain {
- static{
- System.out.println("hello");
- try {
- int i = 1/0;
- } catch (Exception e) {
- System.exit(0);
- }finally{
- System.out.println("world");
- }
- }
- public static void main(String[] args) {
-
- }
- }
复制代码
|