0
public static <K, V> boolean compare(Pair<K, V> p1, Pair<K, V> p2) {
return p1.getKey().equals(p2.getKey()) &&
p1.getValue().equals(p2.getValue());
}
通過我的研究仿製藥,我還沒有在這解釋了通用的返回類型之前的功能用於回答絆倒,如有人可以解釋這個通用方法
<K, V>
那在boolean
之前。
你不是[只是問這個問題(http://stackoverflow.com/questions/33468076/what-is-the-purpose-of-generics-before-return-type)? – VGR