为什么创建 Simple ImmutableMap 会导致 unchecked cast 警告?

Why does creating SimpleImmutableMap cause unchecked cast warning?

在下面非常简单的代码中:

public static void test(Map<Externalizable, Externalizable> t){
    for(Map.Entry<Externalizable, Externalizable> e : t.entrySet()){
      //The next line causes unchecked cast warning
      Object o = new AbstractMap.SimpleImmutableEntry(e.getKey(), e.getValue());
    }
  }

DEMO

为什么? AbstractMap.SimpleImmutableMap 是一个通用的 class。怎么了?

因为您正在使用 raw type. Instead, use the diamond operator

Object o = new AbstractMap.SimpleImmutableEntry<>(e.getKey(), e.getValue());