这两种相似的方法有什么区别。任何人都可以向我解释确切的区别吗?
**Accepts the list with all Number Type**
public static double sum(List<? extends Number> list)
{
double sum = 0;
for(Number n : list){
sum += n.doubleValue();
}
return sum;
}
// Accepts the list with all Number Type
public static <T extends Number> double sum1(List<T> list){
double sum = 0;
for(T n : list){
sum += n.doubleValue();
}
return sum;
}
答案 0 :(得分:0)
没有区别。它们将在完全相同的输入上完全相同。