04/08/2011, 03:56
|
| | Fecha de Ingreso: agosto-2011
Mensajes: 2
Antigüedad: 13 años, 4 meses Puntos: 0 | |
Respuesta: LinkedList y ArrayList import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
public class Customer {
private List custom;
public Customer(boolean linked){
if(linked)
custom=new LinkedList();
else
custom=new ArrayList();
}
} |