Java,哈希映射中的hashmap

时间:2013-08-01 03:43:53

标签: java arraylist hashmap

在我的问题中跟进:How To Access hash maps key when the key is an object

我想尝试这样的事情:webSearchHash.put(xfile.getPageTitle(i),outlinks.put(keyphrase.get(i), xfile.getOutLinks(i)));

不知道为什么我的密钥是null

这是我的代码:

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Set;

import readFile.*;

public class WebSearch {

    readFile.ReadFile xfile = new readFile.ReadFile("inputgraph.txt");
    HashMap webSearchHash = new HashMap();
    ArrayList belongsTo = new ArrayList();
    ArrayList keyphrase = new ArrayList();

    public WebSearch() {        
    }

    public void createGraph()
    {
        HashMap <Object, ArrayList<Integer> > outlinks = new HashMap <Object, ArrayList<Integer>>();
        for (int i = 0; i < xfile.getNumberOfWebpages(); i++ )
        {
            keyphrase.add(i,xfile.getKeyPhrases(i));
            webSearchHash.put(xfile.getPageTitle(i),outlinks.put(keyphrase.get(i), xfile.getOutLinks(i)));
        }
    }
}

当我System.out.print(webSearchHash);时输出为{Star-Ledger=null, Apple=null, Microsoft=null, Intel=null, Rutgers=null, Targum=null, Wikipedia=null, New York Times=null}

但是System.out.print(outlinks);给了我:{[education, news, internet]=[0, 3], [power, news]=[1, 4], [computer, internet, device, ipod]=[2]}基本上我希望哈希值是我的密钥的值

3 个答案:

答案 0 :(得分:2)

你真的不应该使用HashMap(或任何可变对象)作为你的密钥,因为它会破坏你Map的稳定性。根据您打算完成的任务,可能会有许多有用的方法和库,但使用不稳定的对象作为Map键会遇到麻烦。

答案 1 :(得分:0)

因此我认为我只是这样做,它给出了我想要的东西:

for (int i = 0; i < xfile.getNumberOfWebpages(); i++ )
    {
        HashMap <Object, ArrayList<Integer> > outlinks = new HashMap <Object, ArrayList<Integer>>();
        keyphrase.add(i,xfile.getKeyPhrases(i));
        outlinks.put(keyphrase.get(i), xfile.getOutLinks(i));
        webSearchHash.put(xfile.getPageTitle(i), outlinks);

    }

答案 2 :(得分:0)

您的问题是您使用此声明输入了空值

 webSearchHash.put(xfile.getPageTitle(i),outlinks.put(keyphrase.get(i), xfile.getOutLinks(i)));

让我们分解它。 put的形式为

map.put(key,value)

因此,对于您的密钥,您有getPageTitle(i)。这很好

对于您的值,您的返回值为

outlinks.put(keyphrase.get(i), xfile.getOutLinks(i))

根据javadoc,hashmap put返回与此键关联的先前值(在本例中为keyphrase.get(i)),如果之前没有值与之关联,则返回null。

由于之前没有与您的密钥相关联,因此它返回null。

所以你的陈述实际上是在说

webSearchHash.put(xfile.getPageTitle(i),null);

http://docs.oracle.com/javase/6/docs/api/java/util/HashMap.html#put(K,V)