码迷,mamicode.com
首页 > 编程语言 > 详细

多线程两种实现方式的区别

时间:2017-09-02 19:08:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:ring   一个   com   分享   []   概念   out   代码   his   

请解释Thread类与Runnable接口实现多线程的区别?(请解释多线程两种实现方式的区别?)

1. Thread类时Runnable接口的子类,使用Runnable接口实现多线程可以避免单继承局限!
2. Runnable接口实现的多线程可以比Thread类实现的多线程更加清楚的描述数据共享的概念!

请写出多线程两种实现操作?(写出Thread类继承的方式和Runnable接口实现的方式代码!)

实现Thread类:

技术分享

 

类似于代理设计模式!

class MyThread extends Thread { // 这是一个多线程的操作类
    private int ticket = 10;
    public void run() { // 重写run()方法,作为线程的主体操作方法
        for(int i=0;i<100;i++){
            if(this.ticket > 0){
                System.out.println("卖票,ticket="+this.ticket--);
            }
        }
    }
}
public class Demo_Thread { // 主类
    public static void main(String[] args) {
        MyThread mt = new MyThread();
        new Thread(mt).start();
        new Thread(mt).start();
        new Thread(mt).start();
    }
}

实现Runnable接口:

技术分享

 

class MyRunnable implements Runnable { // 这是一个多线程的操作类
    private int ticket = 10;
    public void run() {
        for(int i=0;i<100;i++){
            if(this.ticket>0){
                System.out.println("卖票,ticket="+this.ticket--);
            }
        }
    }
}
public class Demo_Runnable { // 主类
    public static void main(String[] args) {
        MyThread mt = new MyThread();
        new Thread(mt).start();
        new Thread(mt).start();
        new Thread(mt).start();
    }
}

 

多线程两种实现方式的区别

标签:ring   一个   com   分享   []   概念   out   代码   his   

原文地址:http://www.cnblogs.com/9513-/p/7467281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!