Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/07/2010, 00:02
r4ilgun
 
Fecha de Ingreso: noviembre-2008
Mensajes: 21
Antigüedad: 16 años
Puntos: 1
Respuesta: Demorar Cliclo (for)

Código java:
Ver original
  1. package test;
  2.  
  3. public class Sleep
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         for(int i = 0; i > 0; i++)
  8.         {
  9.             //algo
  10.            
  11.             try {
  12.                 Thread.sleep(1000);
  13.             } catch (InterruptedException e) {
  14.                 e.printStackTrace();
  15.             }
  16.         }
  17.     }
  18. }

o sinó

Código java:
Ver original
  1. package test;
  2.  
  3. public class Sleep
  4. {
  5.     public static void main(String[] args) throws InterruptedException
  6.     {
  7.         for(int i = 0; i > 0; i++)
  8.         {
  9.             //algo
  10.            
  11.             Thread.sleep(1000);
  12.         }
  13.     }
  14. }