我的腳本的目標是從關機前獲取用戶輸入的時間以及關機過程中想要顯示的消息。我的問題是我無法弄清楚如何將變量放入shutdown命令並讓它正確執行。 import os
time = (input("How much time till shutdown?"))
message = input("What is your shutdown message?")
shutdown = "sh
我正在創建自己的線程池和將來可以執行可並行調用接口的對象。 Executor提供關閉方法來停止所有工作線程運行。如果我像下面一樣創建一個線程池,我應該如何在所有線程完成執行後實現shutdown方法來停止? 我的自定義線程池看起來像this class MyThreadPool implements java.util.concurrent.Executor
{
private fin