摘要:
守护线程定义:package loci.currency.thread.daemon;public class TimeoutThread extends Thread{ private int timeout; private boolean isCancel = false; public TimeoutThread(int timeout,final Thread currentThread) { super(); this.timeout = timeout; this.setDaemon(tr... 阅读全文