Java中列表字符串和String []列表或T列表和T []列表的通用方法

时间:2019-03-05 17:44:57

标签: java arrays list generics overloading

我尝试编写一种通用的打印方法:

  1. 元素列表,例如Integer,String等的列表。
  2. T []的列表,例如List<String[]>, List<Integer[]>

我有以下两种方法:

public static <T> void printList(List<T> list){
    for(T n : list) {
        System.out.print("[" + n + "]");
    }
}
public static <T> void printList(List<T[]> list){
    for(T[] arr: list) {
        for(T n : arr){
            System.out.print("[" + n + "]");
        }
    }
}

我遇到了编译错误:

public static <T> void printList(List<T[]> list){
 where T#1,T#2 are type-variables:
 T#1 extends Object declared in method <T#1>printList(List<T#1[]>)
 T#2 extends Object declared in method <T#2>printList(List<T#2>)

有什么办法可以为List<T>List<T[]>设置方法printList?

1 个答案:

答案 0 :(得分:2)

在运行时,您的List<T>List<T[]>完全相同,因为编译器已删除了通用类型。因此,这两种方法都具有相同的签名,并且会产生编译错误。要解决该问题,只需为其中一种方法改用其他名称即可。

详细了解擦除概念What is the concept of erasure in generics in Java?Java spec