A.繼承Thread類的缺點(diǎn)是不能再繼承其它類
B.實(shí)現(xiàn)Runnable接口,需要通過Thread.currentThread()方法獲取線程對象再進(jìn)行操作
C.繼承Thread類的方式可以獲取線程執(zhí)行結(jié)果
D.實(shí)現(xiàn)Runnable接口的優(yōu)點(diǎn)是不影響繼承其它類
A.stop()
B.suspend()
C.resume()
D.interrupt()