class Demo8 { public static void main(String[] args) { new Thread( new Runnable(){ public void run(){ System.out.println("Runable run()"); } } ){ public void run(){ System.out.println("Thread run()"); } }.start(); System.out.println("Hello World!"); } } |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |