标题:JDK1.5怎么创建 HashMap对象
取消只看楼主
windyfzz
Rank: 2
等 级:禁止访问
帖 子:90
专家分:12
注 册:2010-7-25
结帖率:68%
已结贴  问题点数:20 回复次数: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 对象 
2010-12-10 21:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-328658-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.130605 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved