A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 z474354474 于 2016-3-1 06:53 编辑

public class Demo2_Name {

        public static void main(String[] args) throws Exception {
                System.out.println("话说一天许仙被法海抓了");
                Thread th = new Thread(new Runnable() {
                        @Override
                        public void run() {
                                for(int i = 0;i < 10; i++){
                                        try {
                                                Thread.sleep(500);
                                        } catch (InterruptedException e) {
                                                // TODO Auto-generated catch block
                                                e.printStackTrace();
                                        }
                                        System.out.println(Thread.currentThread().getName()+"说:娘子救我!!");        
                                }
                        }
                });
                th.setName("许仙");
                th.start();
               
               
                new Thread(new Runnable() {
                        @Override
                        public void run() {
                                Thread.currentThread().setName("白娘子");
                                for(int i = 0;i < 10; i++){
                                        try {
                                                Thread.sleep(500);
                                        } catch (InterruptedException e) {
                                                // TODO Auto-generated catch block
                                                e.printStackTrace();
                                        }
                                        System.out.println(Thread.currentThread().getName()+"说:官人我来了!");
                                }
                                
                        }
                }).start();
               
                for (int i = 0; i < 10; i++) {
                        Thread.sleep(500);
                        Thread.currentThread().setName("法海");
                        System.out.println(Thread.currentThread().getName()+"说:人与妖不能在一起!!");
                }
               
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马