What is the difference between Thread and Runnable types?

Submitted by: Administrator
A Java Thread controls the main path of execution in an application. When you invoke the Java Virtual Machine with the java command, it creates an implicit thread in which to execute the main method. The Thread class provides a mechanism for the first thread to start-up other threads to run in parallel with it.
Submitted by: Administrator

Read Online Java Threads Job Interview Questions And Answers