一個線程類休眠1000毫秒和一個線程對象休眠1000毫秒有什麼聯系嗎 只有線程類及其子類對象才可以調用sleep方法嗎
Thread.sleep(1000);
Thread thread =new Thread ( );
thread.sleep(1000);
本質上sleep是Thread類的靜態方法,這兩行代碼是一樣的含有,但是第二種thread.sleep的調用會報警告的:The static method sleep(long) from the type Thread should be accessed in a static way。
sleep是靜態方法,應該直接使用Thread.sleep()來調用的。