?? bestreplacement 2.txt
字號:
// uses BooleanLock from chapter 17
public class BestReplacement extends Object {
private Thread internalThread;
private volatile boolean stopRequested;
private BooleanLock suspendRequested;
private BooleanLock internalThreadSuspended;
public BestReplacement() {
stopRequested = false;
suspendRequested = new BooleanLock(false);
internalThreadSuspended = new BooleanLock(false);
Runnable r = new Runnable() {
public void run() {
try {
runWork();
} catch ( Exception x ) {
// in case ANY exception slips through
x.printStackTrace();
}
}
};
internalThread = new Thread(r);
internalThread.start();
}
/**
*就是這種地方不太明白*/
private void runWork() {
int count = 0;
while ( !stopRequested ) {
try {
waitWhileSuspended();
} catch ( InterruptedException x ) {
// 重新聲明中斷
//讓余下的代碼明白已經請求了中斷
Thread.currentThread().interrupt(); //它寫這句話是什么意思,我的理解是把中斷這個正在運行runWork()這個方法的線程給中斷了;是這樣嗎??
學這個有用嗎??
// 再求while條件的值(可能如此)
// 現在為false
continue;
}
System.out.println("Part I - count=" + count);
try {
Thread.sleep(1000);
} catch ( InterruptedException x ) {
Thread.currentThread().interrupt(); // reassert
// continue on as if sleep completed normally
}
System.out.println("Part II - count=" + count);
try {
Thread.sleep(1000);
} catch ( InterruptedException x ) {
Thread.currentThread().interrupt(); // reassert
// continue on as if sleep completed normally
}
System.out.println("Part III - count=" + count);
count++;
}
}
private void waitWhileSuspended()
throws InterruptedException {
// only called by the internal thread - private method
synchronized ( suspendRequested ) {
if ( suspendRequested.isTrue() ) {
try {
internalThreadSuspended.setValue(true);
suspendRequested.waitUntilFalse(0);
} finally {
internalThreadSuspended.setValue(false);
}
}
}
}
public void suspendRequest() {
suspendRequested.setValue(true);
}
public void resumeRequest() {
suspendRequested.setValue(false);
}
public boolean waitForActualSuspension(long msTimeout)
throws InterruptedException {
// Returns 'true' if suspended, 'false' if the
// timeout expired.
return internalThreadSuspended.waitUntilTrue(msTimeout);
}
public void stopRequest() {
stopRequested = true;
internalThread.interrupt();
}
public boolean isAlive() {
return internalThread.isAlive();
}
public static void main(String[] args) {
try {
BestReplacement br = new BestReplacement();
System.out.println(
"--> just created, br.isAlive()=" +
br.isAlive());
Thread.sleep(4200);
long startTime = System.currentTimeMillis();
br.suspendRequest();
System.out.println(
"--> just submitted a suspendRequest");
boolean suspensionTookEffect =
br.waitForActualSuspension(10000);
long stopTime = System.currentTimeMillis();
if ( suspensionTookEffect ) {
System.out.println(
"--> the internal thread took " +
(stopTime - startTime) + " ms to notice " +
"\n the suspend request and is now " +
"suspended.");
} else {
System.out.println(
"--> the internal thread did not notice " +
"the suspend request " +
"\n within 10 seconds.");
}
Thread.sleep(5000);
br.resumeRequest();
System.out.println(
"--> just submitted a resumeRequest");
Thread.sleep(2200);
br.stopRequest();
System.out.println(
"--> just submitted a stopRequest");
} catch ( InterruptedException x ) {
// ignore
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -