Last active
January 21, 2016 11:22
-
-
Save lanhuai/6460cd300f4598a42a23 to your computer and use it in GitHub Desktop.
用三个线程按顺序循环打印abc三个字母,比如abcabcabc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.lanhuai.common.util; | |
import java.util.concurrent.locks.Condition; | |
import java.util.concurrent.locks.ReentrantLock; | |
/** | |
* @author lanhuai | |
*/ | |
public class ThreadAbc { | |
public static final int THREAD_A = 0; | |
public static final int THREAD_B = 1; | |
public static final int THREAD_C = 2; | |
private int threadCode = 0; | |
static class Task implements Runnable { | |
private static final ReentrantLock lock = new ReentrantLock(); | |
private static final Condition condition = lock.newCondition(); | |
private final ThreadAbc threadAbc; | |
private final int threadCode; | |
public Task(ThreadAbc threadAbc, int threadCode) { | |
this.threadAbc = threadAbc; | |
this.threadCode = threadCode; | |
} | |
@Override | |
public void run() { | |
for (int x = 0; x < 1000; x++) { | |
runOnce(); | |
} | |
} | |
private void runOnce() { | |
lock.lock(); | |
try { | |
while (this.threadCode != threadAbc.threadCode) { | |
condition.await(); | |
} | |
if (this.threadCode == THREAD_A) { | |
System.out.print('A'); | |
} else if (this.threadCode == THREAD_B) { | |
System.out.print('B'); | |
} else if (this.threadCode == THREAD_C) { | |
System.out.println('C'); | |
} else { | |
return; | |
} | |
threadAbc.threadCode = (threadAbc.threadCode + 1) % 3; | |
condition.signalAll(); | |
} catch (InterruptedException ex) { | |
ex.printStackTrace(); | |
} finally { | |
lock.unlock(); | |
} | |
} | |
} | |
public static void main(String[] args) { | |
ThreadAbc threadAbc = new ThreadAbc(); | |
Thread threadA = new Thread(new Task(threadAbc, THREAD_A)); | |
Thread threadB = new Thread(new Task(threadAbc, THREAD_B)); | |
Thread threadC = new Thread(new Task(threadAbc, THREAD_C)); | |
threadA.start(); | |
threadB.start(); | |
threadC.start(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment