Hola buenas, estoy haciendo un programa en java con eclipse y me he quedado atascado en una tonteria:
Resulta que tengo un bucle while y quiero que la condicion sea, que se repita en x tiempo.
Dicho de otra manera, se tiene que ejecutar durante 5 minutos por ejemplo, pero no me aclaro con la funcion timer. Alguien me podria hechar una mano, gracias!!!
while(){
for(Persona x: listaPersonas){
int m = random.nextInt(lmteInf_0, lmteSup_0);
if(m==1){
int xV= x.getX();
int yV= x.getY();
int xN = random1.nextInt(Ri, Rs);
int yN = random1.nextInt(Ri, Rs);
while (dentroRango(xN,yN,city)==false && city.estaVacio(xN,yN)==false){
xN = random1.nextInt(Ri, Rs);
yN = random1.nextInt(Ri, Rs);
}