欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java 多线程Thread与runnable的区别

程序员文章站 2024-02-23 21:44:16
java 多线程thread与runnable的区别 java中实现多线程的方法有两种:继承thread类和实现runnable接口 1,继承thread类,重写父...

java 多线程thread与runnable的区别

java中实现多线程的方法有两种:继承thread类和实现runnable接口

1,继承thread类,重写父类run()方法

  public class thread1 extends thread {
 
    public void run() {
        for (int i = 0; i < 10000; i++) {
            system.out.println("我是线程"+this.getid());
        }
    }
 
    public static void main(string[] args) {
        thread1 th1 = new thread1();
        thread1 th2 = new thread1();
        th1.run();
        th2.run();
    }
   }
 

run()方法只是普通的方法,是顺序执行的,即th1.run()执行完成后才执行th2.run(),这样写只用一个主线程。多线程就失去了意义,所以应该用start()方法来启动线程,start()方法会自动调用run()方法。上述代码改为:

 public class thread1 extends thread {
    
    public void run() {
        for (int i = 0; i < 10000; i++) {
            system.out.println("我是线程"+this.getid());
        }
    }
 
    public static void main(string[] args) {
        thread1 th1 = new thread1();
        thread1 th2 = new thread1();
        th1.start();
        th2.start();
    }
}

通过start()方法启动一个新的线程。这样不管th1.start()调用的run()方法是否执行完,都继续执行th2.start()如果下面有别的代码也同样不需要等待th2.start()执行完成,而继续执行。(输出的线程id是无规则交替输出的) 

2,实现runnable接口

public class thread2 implements runnable {
 
    public string threadname;
    
    public thread2(string tname){
        threadname = tname;
    }
    
    
    public void run() {
        for (int i = 0; i < 10000; i++) {
            system.out.println(threadname);
        }
    }
    
    public static void main(string[] args) {
        thread2 th1 = new thread2("线程a");
        thread2 th2 = new thread2("thread-b");
        th1.run();
        th2.run();
    }
}

和thread的run方法一样runnable的run只是普通方法,在main方法中th2.run()必须等待th1.run()执行完成后才能执行,程序只用一个线程。要多线程的目的,也要通过thread的start()方法(runnable是没有start方法)。上述代码修改为:

public class thread2 implements runnable {
 
    public string threadname;
    
    public thread2(string tname){
        threadname = tname;
    }
    
    
    public void run() {
        for (int i = 0; i < 10000; i++) {
            system.out.println(threadname);
        }
    }
    
    public static void main(string[] args) {
        thread2 th1 = new thread2("线程a");
        thread2 th2 = new thread2("thread-b");
        thread myth1 = new thread(th1);
        thread myth2 = new thread(th2);
        myth1.start();
        myth2.start();
    }
}

 总结:实现java多线程的2种方式,runable是接口,thread是类,runnable只提供一个run方法,建议使用runable实现 java多线程,不管如何,最终都需要通过thread.start()来使线程处于可运行状态。

以上就是关于java多线程的实例详解,如有疑问请留言或者到本站社区交流讨论,本站关于线程的文章还有很多,希望大家搜索查阅,大家共同进步!