私はスレッドの初心者です。スレッド オブジェクトがスリープ メソッドを呼び出した 3 種類の方法の違いが正確にはわかりません。また、スリープメソッドが呼び出された方法の使用に制限があるのはどのタイプのケースかを明確にしてください。
コードを以下に示します
// implementing thread by extending THREAD class//
class Logic1 extends Thread
{
public void run()
{
for(int i=0;i<10;i++)
{
Thread s = Thread.currentThread();
System.out.println("Child :"+i);
try{
s.sleep(1000); // these are the three types of way i called sleep method
Thread.sleep(1000); //
this.sleep(1000); //
} catch(Exception e){
}
}
}
}
class ThreadDemo1
{
public static void main(String[] args)
{
Logic1 l1=new Logic1();
l1.start();
}
}