黑马程序员技术交流社区

标题: 匿名内部类实现线程的两种方式 [打印本页]

作者: 曼舞雪菲    时间: 2016-8-1 22:08
标题: 匿名内部类实现线程的两种方式
1.继承Thread类
new Thread() {                                                  //1,new 类(){}继承这个类
    public void run() {                                         //2,重写run方法
        for(int i = 0; i < 3000; i++) {                         //3,将要执行的代码,写在run方法中
            System.out.println("aaaaaaaaaaaaaaaaaaaaaaaaaaaa");
        }
    }
}.start();
2.实现Runnable接口
new Thread(new Runnable(){                                      //1,new 接口(){}实现这个接口
    public void run() {                                         //2,重写run方法
        for(int i = 0; i < 3000; i++) {                         //3,将要执行的代码,写在run方法中
            System.out.println("bb");
        }
    }
}.start();




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2