不好意思想請教一個作業問題,對大神來說應該不難,但我在一個地方卡住了。需要實現一個用戶輸入指令,然後運用多執行緒處理背後的運算,回傳用戶訊息。運算邏輯的部分老師已經寫好,不用管他怎麼計算的,用戶也不用真的輸入東西,用 System.out.println的方式呈現就好, 比如說System.out.println(solution.runCommand("start 10456060"));我需要印出Started 10456060,程式碼以及打印結果連結如下,Solution那個類是新加的,功能有實現出來。
https://scalloped-ceres-c7b.notion.site/Thread-a7f5586100724fe2b18ef8d0b6e707ad
我的問題是
private void startCalculation(long n) {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
SlowCalculator s = new SlowCalculator(n);
try {
// s.run();
results.put(n, s.getResult());
} finally {
runningCalculations.remove(n);
}
}
});
runningCalculations.put(n, t);
t.start();
}
這個方法,又另外new了一個Runnable(),他才能跑,但在SlowCalculator類裡已經引用Runnable應該不需要再這樣寫才對,但又不會修改,因此上來詢問,感激不盡。