其实,看你想用来做什么的,Thread th = new Thread(){ public void run(){ System.out.println(new java.util.Date()); try{ Thread.sleep(1000); }catch(Exception ex){ } }};th.start();这样就是另一个线程了。