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

Java 多线程的实现方法

时间:2017-01-01 18:59:53      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:cat   class   thread   线程   分享   tar   pre   xtend   退出   

package com.jckb;
/**多线程实现的两种方法
 * 
 * @author gx
 *
 */

public class Test2 {
    public static void main(String[] args) {
        Mythread m = new Mythread();
        m.start();// 不能直接调用run方法
        // m.run();//是方法调用,不是线程的启动
        Thread t = new Thread(new Mythread2());
        t.start();

    }
}

// 线程停止的方法是run方法返回
// flag=false退出
// 线程停止后不能再次启动
class Mythread extends Thread {
    @Override
    public void run() {
        boolean flag = true;
        int i = 1;
        while (flag) {

            System.out.println("i=" + i);
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            i++;
            if (i == 5) {
                flag = false;
                // return;
            }
        }
    }
}

class Mythread2 implements Runnable {
    @Override
    public void run() {
        for (int i = 0; i < 10; i++) {
            System.out.println("i=" + i);
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

技术分享

Java 多线程的实现方法

标签:cat   class   thread   线程   分享   tar   pre   xtend   退出   

原文地址:http://www.cnblogs.com/gx-java/p/6241305.html

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