Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

caiobm

By: a guest on Apr 16th, 2009  |  syntax: Java  |  size: 0.31 KB  |  hits: 77  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. public class PrintTask extends java.util.TimerTask {
  2.         private int counter;
  3.  
  4.         public PrintTask() {
  5.         }
  6.        
  7.         public void run() {
  8.                 System.out.println(counter++);
  9.         }
  10.        
  11.         public static void main(String[] args) {
  12.                 java.util.Timer tim = new java.util.Timer();
  13.                 tim.scheduleAtFixedRate(new PrintTask(), 0, 1000);
  14.         }
  15. }