欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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 对象作为参数

下一篇: 队列