在ArrayListMultimap中不可用的create方法

时间:2015-04-01 16:17:34

标签: java guava

我正在尝试使用Guava Library的MultiMap实现。根据 Guava API Docs它有一个静态create()方法,但我的Eclipse IDE认为即使我已经导入了所需的jar也没有。

建议The method create() is undefined for the type ArrayListMultimap

屏幕截图相同:

enter image description here

1 个答案:

答案 0 :(得分:1)

所以Google Collections与Guava不同,尽管它们共享许多相同的类。只有使用Guava jar而不是google-collections-0.8.jar时才能使用create方法

您可以从http://mvnrepository.com/artifact/com.google.guava/guava下载Guava jar(任何版本),或者从同一个地方获取Maven / Gradle配置。