Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/08/2012, 17:28
Doctrina
 
Fecha de Ingreso: abril-2012
Ubicación: Canarias
Mensajes: 41
Antigüedad: 12 años, 8 meses
Puntos: 5
Respuesta: duda con el for

Sí que puedes. Puedes usar hasta objetos, por ejemplo:

Código Java:
Ver original
  1. List<String> strings = new ArrayList<String>();
  2.  
  3. for(Iterator it = strings.iterator(); it.hasNext(); ) {
  4.  
  5. System.out.println(it.next().toString());
  6.  
  7. }