我正在尝试在构造函数中传入Set<String>
,但是我收到以下错误:
Incompatible types. Required Set<String> but 'of' was inferred to ImmutableSet<E>: no instance(s) of type variable(s) E exist so that ImmutableSet<E> conforms to Set<String>
以下是代码:
final CustomMetricsModule customMetricsModule = new CustomMetricsModule(Collections.EMPTY_MAP,
ImmutableSet.of("val", "val1"));
CustomMetricsModule
有一张地图,Set<String>
为其参数。
答案 0 :(得分:0)
通过更改导入的Set
修复了问题。在CustomMetricsModule
中,我应该导入java.util.Set
,但我不是。