传统线程实现方式

Posted 陈小兵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了传统线程实现方式相关的知识,希望对你有一定的参考价值。

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();
            }
        }
    }

}

 

以上是关于传统线程实现方式的主要内容,如果未能解决你的问题,请参考以下文章

互斥锁 & 共享锁

Java多线程——Lock&Condition

ReentrantReadWriteLock场景应用

Java多线程与并发库高级应用-工具类介绍

Java多线程与并发库高级应用-工具类介绍

传统线程实现方式