InterviewSolution
Saved Bookmarks
| 1. |
Which Class Is Used To Make A Thread? |
|
Answer» THREAD class is used to make THREADS in java, Thread encapsulates a thread of execution. To CREATE a new thread the program will EITHER extend Thread or implement the RUNNABLE interface. Thread class is used to make threads in java, Thread encapsulates a thread of execution. To create a new thread the program will either extend Thread or implement the Runnable interface. |
|