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

初步学习多线程2

时间:2017-12-23 14:18:05      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:star   imp   get   使用   sys   class   多线程   getname   总结   

线程代码展示:

兔子线程实现Runnable接口:

package thread;

/**
 * 兔子的线程
 * @author superdrew
 */
public class RabbitThread  implements Runnable{
    
    public void run() {
        while(true){
            System.out.println("兔子领先了...加油!!!!!"+Thread.currentThread().getName()+" "+Thread.currentThread().getPriority());
        }
    }
}

测试线程:

package thread;

/**
 * 功能:龟兔赛跑   实现方法二
 *            使用线程
 *     思路:分别创建两个线程  一个是乌龟 另外一个是兔子  ,完成赛跑任务
 *      总结:
 *          1.如何定义线程
 *              实现Runnable接口,实现run方法
 *          2.如何创建线程对象
 *              RabbitThread  rt = new RabbitThread();
 *              Thread th = new Thread(rt);
 *          3.如何启动线程
 *              th.strat();
 *  
 *          两种方式的优缺点
 *          1.继承Thread
 *                优点:代码简单些
 *                缺点:不能继承其他类  
 *          2.实现了Runnable
 *              优点:能够继承其他类
 *              缺点:代码复杂点
 * @author superdrew
 */
public class TestThread1 {
    public static void main(String[] args) {
        RabbitThread  rt = new RabbitThread();
        Thread th = new Thread(rt);
        th.start();
        
        while(true){//乌龟有机会吗?
            System.out.println("乌龟领先了.....加油!!!!!"+
                    Thread.currentThread().getName()+" "+Thread.currentThread().getPriority());
        }
    }
}

 

初步学习多线程2

标签:star   imp   get   使用   sys   class   多线程   getname   总结   

原文地址:http://www.cnblogs.com/superdrew/p/8092938.html

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