java控制多线程执行顺序

package com.yihaomen.mybatis.inter;

import java.io.IOException;

public class TestThread {

	public static void main(String[] args) throws IOException {
		final Test obj = new Test();

		new Thread() {
			public void run() {
				obj.m1();
			}
		}.start();
		new Thread() {
			public void run() {
				obj.m2();
			}
		}.start();
		new Thread() {
			public void run() {
				obj.m3();
			}
		}.start();

	}

}

class Test {
	static int count;
	volatile int target = 1;

	synchronized void m1() {
		for (int i = 0; i < 10; i++) {
			while (target == 2 || target == 3) {
				try {
					wait();
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
			System.out.println("m1() =" + i);
			target = 2;
			notifyAll();
		}
	}

	synchronized void m2() {
		for (int i = 0; i < 10; i++) {
			while (target == 1 || target == 3) {
				try {
					wait();
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
			System.out.println("m2() =" + i);
			target = 3;
			notifyAll();
		}
	}

	synchronized void m3() {
		for (int i = 0; i < 10; i++) {
			while (target == 1 || target == 2) {
				try {
					wait();
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
			System.out.println("m3() =" + i);
			target = 1;
			notifyAll();
		}
	}
}

输出结果:

m1() =0
m2() =0
m3() =0
m1() =1
m2() =1
m3() =1
m1() =2
m2() =2
m3() =2
m1() =3
m2() =3
m3() =3
m1() =4
m2() =4
m3() =4
m1() =5
m2() =5
m3() =5
m1() =6
m2() =6
m3() =6
m1() =7
m2() =7
m3() =7
m1() =8
m2() =8
m3() =8
m1() =9
m2() =9
m3() =9

参考: http://www.blogjava.net/santicom/archive/2011/09/02/357783.html

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值