在Java

时间:2015-10-10 19:19:27

标签: java arrays dictionary static hashmap

尝试初始化变量时遇到问题:

Map<Sentence, Float>[] vectorValueSentences; // this is ok

/* but this is not */ vectorValueSentences = new HashMap<Sentence, Float>()[100];

我搜索该做什么,但我找不到。我读到要初始化的对象必须是静态的,但我没有找到一种方法来声明Map静态。

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

    HashMap<Sentence, Float>[] vectorValueSentences = new HashMap[100];