HashMap以对象作为key
程序员文章站
2022-05-23 23:22:32
...
class Test
{
public static void main(String args[])
{
HashMap hm = new HashMap();
Object o = new Test1(1);
hm.put(o, "Hello");
System.out.println(hm.get(o));
}
}
class Test1
{
private int i;
Test1(int i)
{
this.i = i;
}
..................
}
上一篇: java 对象作为参数
下一篇: 队列