1.

What Are The Methods Of The Thread Class Used To Schedule The Threads?

Answer»

The METHODS of the thread CLASS used to SCHEDULE the threads are as follows:

  •  public final void join() THROWS InterruptedException
  •  public final void notify()
  •  public final void notifyAll() 
  •  public static void yield()
  •  public final void setPriority(INT priority)
  •  public static void sleep(long millis) throws InterruptedException
  •  public final void wait() throws InterruptedException

The methods of the thread class used to schedule the threads are as follows:



Discussion

No Comment Found