标题:HashMap
取消只看楼主
亮剑
Rank: 1
等 级:新手上路
帖 子:148
专家分:0
注 册:2006-10-18
 问题点数:0 回复次数:1 
HashMap
//定义一个HashMap对象
HashMap Hash=new HashMap();
//往HashMap中压入对象
Hash.put("001",new Person());//这里为什么错啊 HashMap应该如何使用啊 (这是程序片断,Person我前面有这个类)
搜索更多相关主题的帖子: HashMap 
2006-11-19 11:46
亮剑
Rank: 1
等 级:新手上路
帖 子:148
专家分:0
注 册:2006-10-18
得分:0 
class A{
//HashMap Hash=new HashMap();//放在这就有问题
//Hash.put("001",new Person())
public static void main(String args []){
**HashMap Hash=new HashMap(); //放在这就没问题
**Hash.put("001",new Person())
}
}
这是为什么呢
后来我有改成这样也不行!我的基础不是很扎实,课程太快,没法对基础进行细致的专研,还忘指点
class A{
HashMap Hash=new HashMap();
Hash.put("001",new Person())
public static void main(String args []){
A a=new A();
}
}
2006-11-19 12:51



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




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

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