使用Runnable 介面可以為多個執行緒提供共享的數據。 class MyJob implements Runnable { @Override public void run(){...} } Thread cpu1 = new Thread( ...
確定! 回上一頁