1
resposta

teste

/*COM GENERICS*/
List <Apple> box = ... ;
Apple apple = box.get(0);

/*SEM GENERICS*/
List box = ... ;
1 resposta

Correto Daniel