Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/05/2009, 10:55
Avatar de drac94
drac94
 
Fecha de Ingreso: mayo-2008
Ubicación: México
Mensajes: 383
Antigüedad: 16 años, 8 meses
Puntos: 5
Respuesta: Pregunta existencial sobre arrays en Java

In Java, arrays are objects that store multiple variables of the same type, or variables that are all subclasses of the same type. Arrays can hold either primitives or object references, but the array itself will always be an object on the heap, even if the array is declared to hold primitive elements. In other words, there is no such thing as a primitive array, but you can make an array of primitives.