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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 苗超维 中级黑马   /  2016-1-22 21:53  /  399 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

第一种  .继承Thread  重写run()方法  start() 方法开启线程                public class Demo2_Thread {
               
                                /**
                                 * @param args
                                 */
                                public static void main(String[] args) {
                                        MyThread mt = new MyThread();                                                        //4,创建自定义类的对象
                                        mt.start();                                                                                                //5,开启线程
                                       
                                        for(int i = 0; i < 3000; i++) {
                                                System.out.println("bb");
                                        }
                                }
                       
                        }
                        class MyThread extends Thread {                                                                        //1,定义类继承Thread
                                public void run() {                                                                                        //2,重写run方法
                                        for(int i = 0; i < 3000; i++) {                                                        //3,将要执行的代码,写在run方法中
                                                System.out.println("aaaaaaaaaaaaaaaaaaaaaaaaaaaa");
                                        }
                                }
                        }
2.实现Runnable 接口
               
                        public class Demo3_Runnable {
                                /**
                                 * @param args
                                 */
                                public static void main(String[] args) {
                                        MyRunnable mr = new MyRunnable();                                                //4,创建自定义类对象
                                        //Runnable target = new MyRunnable();
                                        Thread t = new Thread(mr);                                                                //5,将其当作参数传递给Thread的构造函数
                                        t.start();                                                                                                //6,开启线程
                                       
                                        for(int i = 0; i < 3000; i++) {
                                                System.out.println("bb");
                                        }
                                }
                        }
                       
                        class MyRunnable implements Runnable {                                                        //1,自定义类实现Runnable接口
                                @Override
                                public void run() {                                                                                        //2,重写run方法
                                        for(int i = 0; i < 3000; i++) {                                                        //3,将要执行的代码,写在run方法中
                                                System.out.println("aaaaaaaaaaaaaaaaaaaaaaaaaaaa");
                                        }
                                }
                               
                        }





0 个回复

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