Capisco...Possibile che non esista un modo per scrivere codice indipendentemente dal tipo della lista?Dovresti dire di che tipo è la tua lista.
Cioè hai fatto:
DouLinList<String> mialista = new DouLinList<String> ();
oppure
DouLinList<Integer> mialista = new DouLinList<Integer> ();
o altro?
** EDIT **
Anche così non funziona (add richiede T e non Integer o String, anche se T può essere Integer o String)
Codice PHP:
for(int i = 0; i < arr.length; i++){
if(arr[i] instanceof Integer)
p.add((Integer)(arr[i]));
if(arr[i] instanceof String)
p.add((String)(arr[i]));
if(arr[i] instanceof Double)
p.add((Double)(arr[i]));
...
}
![]()