hashMap 报空指针
importjava.util.HashMap;importjava.util.Iterator;publicclassHashMapTest{publicstaticv...
import java.util.HashMap;
import java.util.Iterator;
public class HashMapTest {
public static void main(String[] args) {
Person p1 = new Person("sd", 1);
Person p2 = new Person("4d", 2);
Person p3 = new Person("4sd", 3);
HashMap hm = new HashMap();
hm.put(1, p1);
hm.put(2, p2);
hm.put(3, p3);
Iterator it= hm.keySet().iterator();
while(it.hasNext()){
String key=it.next().toString();
Person p=(Person) hm.get(key);
System.out.println(p.getId()+p.getName());//异常
}
}
}
class Person {
private String name;
private int id;
public Person(String name, int id) {
super();
this.name = name;
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
} 展开
import java.util.Iterator;
public class HashMapTest {
public static void main(String[] args) {
Person p1 = new Person("sd", 1);
Person p2 = new Person("4d", 2);
Person p3 = new Person("4sd", 3);
HashMap hm = new HashMap();
hm.put(1, p1);
hm.put(2, p2);
hm.put(3, p3);
Iterator it= hm.keySet().iterator();
while(it.hasNext()){
String key=it.next().toString();
Person p=(Person) hm.get(key);
System.out.println(p.getId()+p.getName());//异常
}
}
}
class Person {
private String name;
private int id;
public Person(String name, int id) {
super();
this.name = name;
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
} 展开
6个回答
展开全部
前面已经有两位指出了,在HashMap中,是以键值对进行存储的。在根据key去寻找value的时候,查找过程是这样的:
1.根据key计算出hashcode值。
2.根据hashcode值去寻找相同的hashcode,如果查找到,获取相应的对象。
因为你在存储的时候是int型键值进行计算hashcode值进行存储,而在取的时候以String型进行计算,所以取不到,即 hm.get(key)返回空。改为:
Person p=(Person) hm.get(Integer.paserInt(key));
1.根据key计算出hashcode值。
2.根据hashcode值去寻找相同的hashcode,如果查找到,获取相应的对象。
因为你在存储的时候是int型键值进行计算hashcode值进行存储,而在取的时候以String型进行计算,所以取不到,即 hm.get(key)返回空。改为:
Person p=(Person) hm.get(Integer.paserInt(key));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
键存的时候是int取的时候是string 当然是null
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你不能这么取值
for(Iterator i = map.entrySet().iterator(); i.hasNext();){
Map.Entry entry = (Map.Entry) i.next();
System.out.println(entry.getKey()+":"+entry.getValue());
}
你参考这段
for(Iterator i = map.entrySet().iterator(); i.hasNext();){
Map.Entry entry = (Map.Entry) i.next();
System.out.println(entry.getKey()+":"+entry.getValue());
}
你参考这段
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
hm.put(1, p1);
String key=it.next().toString();
一个是int,一个是String
String key=it.next().toString();
一个是int,一个是String
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
并不是报空指针,是空值。null是值
你的key对不上了,先学学Java中的对象是怎么相等的
你的key对不上了,先学学Java中的对象是怎么相等的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询