InterviewSolution
Saved Bookmarks
| 1. |
Explain Different Way Of Using Thread? |
|
Answer» A JAVA THREAD COULD be IMPLEMENTED by using Runnable interface or by extending the Thread class. The Runnable is more ADVANTAGEOUS, when you are going for multiple inheritance. A Java thread could be implemented by using Runnable interface or by extending the Thread class. The Runnable is more advantageous, when you are going for multiple inheritance. |
|