java多线程的(hello world)

public class MyThreadApp implements Runnable {

    // produce
    // consume

    Thread produce = null;

    Thread consume = null;

    public void run() {
        while (true) {
            say();
        }
    }

    /*
     * synchronized 同步
     * 只能有一个线程使用这个方法,别的线程都要等待
     */
    public synchronized void say()
    {
        if (Thread.currentThread() == produce)
            System.out.println("produce");
        else if (Thread.currentThread() == consume)
            System.out.println("consume");
        else
            System.out.println("main");
        try {
            Thread.sleep(600);
            notifyAll();        //唤起所有的线程进行竞争。
        } catch (InterruptedException e) {
        }
       
    }
    public void go() {
        produce = new Thread(this);
        consume = new Thread(this);
        produce.start();
        consume.start();
    }

    public static void main(String[] args) {
        System.out.println("main method started......");
        MyThreadApp myThreadApp = new MyThreadApp();
        myThreadApp.go();
        myThreadApp.run();
        System.out.println("gone!");

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值