论坛首页 入门技术论坛

HashMap以对象作为key

浏览 2079 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-07-29  
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;
	}
	..................
}

 

 

 

论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics