首页 > 编程语言 > 详细

传统线程实现方式

时间:2016-10-13 21:19:44      阅读:210      评论:0      收藏:0      [点我收藏+]

1.new 一个Thread子类(这里是一个内部类)通常写法如SubThread

Thread thread=new Thread(){
 @Override
 public void run(){
      while(true){
          try {
                Thread.sleep(500);
                System.out.println("0:"+Thread.currentThread());
                System.out.println("1:"+this.currentThread());
               } catch (InterruptedException e) {
                    e.printStackTrace();
               }
           }
       }
 }; 
thread.start();

SubThread

package com.test.thread;

public class SubThread extends Thread{

    @Override
    public void run(){
        while(true){
            System.out.println("111111111111");
        }
    }
    
    public static void main(String[] args) {
        SubThread sub=new SubThread();
        sub.start();
    }
}

2.new一个Runnable对象 ,面向对象的使用方式

Thread thread2=new Thread(new Runnable(){
            @Override
            public void run(){
                while(true){
                    try {
                        Thread.sleep(500);
                        System.out.println("2:"+Thread.currentThread());
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        });
  thread2.start();

 

方法2通常写法如下

Thread thread3=new Thread(new SubRunable());
thread3.start();

package com.test.thread;

public class SubRunable implements Runnable{

    @Override
    public void run() {
        while(true){
            try {
                Thread.sleep(500);
                System.out.println("SubRunable:"+Thread.currentThread());
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

}

 

传统线程实现方式

原文:http://www.cnblogs.com/brant/p/5958114.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!