当前位置: 代码迷 >> Java相关 >> JDK1.5怎么创建 HashMap对象
  详细解决方案

JDK1.5怎么创建 HashMap对象

热度:308   发布时间:2010-12-10 21:14:01.0
JDK1.5怎么创建 HashMap对象
import java.util.*;
class HashMapTest
{
    public static void main(String[] args)
    {
       HashMap<Object> hm=new HashMap<Object>();//用这种方法创建编译错误:类型变量数目错误,需要 2
       /*HashMap hm=new HashMap();//用这种方法创建编译出错:使用了未经检查或不安全的操作
       hm.put("one","zhangsan");
       hm.put("two","lisi");
       hm.put("three","wangwu");
   
       System.out.println(hm.get("one"));
       System.out.println(hm.get("two"));
       System.out.println(hm.get("three"));*/
     }
   
}
在JDK1.5中怎么创建 HashMap对象啊。
搜索更多相关的解决方案: HashMap  对象  

----------------解决方案--------------------------------------------------------
  相关解决方案