copy1(new Vector<String>(),new String[10]);
copy2(new Date[10],new String[10]);
// copy1(new Vector<Date>(),new String[10]);//?为什么出现错误
public static <T> void copy1(Collection<T> dest,T[] src)
{
for(T s : src)
{
dest.add(s);
}
}
public static <T> void copy2(T[] dest,T[] src)
{
for(int i=0;i<src.length;i++)
{
dest[i]=src[i];
}
} |
|