LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1020|回复: 2

Hashtable出错,JAVA(已解决)

[复制链接]
发表于 2007-2-14 08:43:53 | 显示全部楼层 |阅读模式
我从sun.com考了段程序
------------------------------------
import java.util.*;
public class test{
public static void main(){
Hashtable numbers = new Hashtable();
numbers.put("one", new Integer(1));
numbers.put("two", new Integer(2));
numbers.put("three", new Integer(3));
Integer n = (Integer)numbers.get("two");
if (n != null) {
System.out.println("two = " + n);
}
}
}
-------------------------------------
编译无误,但是在运行java test是,出错
---------------------------------------
Exception in thread "main" java.lang.NoSuchMethodError: main
-----------------------------------------

这是怎么回事呢?
发表于 2007-2-14 23:12:06 | 显示全部楼层
用 eclipse 或 netbeans 或 jb 或者....总之是 IDE 再编译运行一遍看看...
回复 支持 反对

使用道具 举报

发表于 2007-2-15 16:29:47 | 显示全部楼层
晕,连最基本的main函数都输错
public static void main(String[] args)
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表