实例化 Java 中 Google 集合的 BiMap
如何实例化 Google 集合的 Bimap
?
我已经阅读了Java:实例化Google Collection的HashBiMap问题
我的代码示例
import com.google.common.collect.BiMap;
public class UserSettings {
private Map<String, Integer> wordToWordID;
UserSettings() {
this.wordToWordID = new BiMap<String. Integer>();
我得到.cannot instantiate the type BiMap<String, Integer>