黑马们 ,看看我下面这段代码有没BUG,我测试的没问题。
---------------------------------------------------------------------以下是代码-------------------
public class DayFirst05 {
public static void main(String[] args) {
dele(new Object[]{"hgjg","abc",1);
}
public static<T> void dele(T[] t,T c)
{
ArrayList<T> aList=new ArrayList<T>();
for(T name:t)
{
aList.add(name);
}
for(int x=0;x<aList.size();x++)
{
if(aList.get(x)==c)
{
aList.remove(x);
}
}
System.out.println(aList);
}
}
|
|