Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/07/2010, 09:27
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 9 meses
Puntos: 101
Respuesta: obtener valor iterador java

Gracias por la explicación. No me habría dado cuenta de lo de .next

En cuanto a hacer un cast, todavía no puedo compilar porque me dice "inconvertible type":

Cita:
...

ePoint = 0; // esto es para evitar repetidos

Iterator theEndPoints = endPoints.iterator();
while (theEndPoints.hasNext())
{
int iPoint = (int) theEndPoints.next();

if ( iPoint != newMeshEdges.vertex && ePoint == 0 )
{
ePoint = iPoint;
}
}