public class Test { public static void run() { int n=0; for(int i=0;i<=10;i++) { try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } Test t=new Test(); n++; System.out.println(n); } } public static void main(String []args) { run(); }}
用函数run()创建对象,每隔一秒运行一次,使用n计数。