Creating and starting Threads

Thread creation in Java ? We learned in our previous article that “ thread ” is an instance of “Thread” class. Please read Introduction-to-threads article before reading further. Threads can be created using any one of the 2 ways 1) Implementing the java.lang.Runnable interface. 2) Extending the java.lang.Thread class In both the ways, we need […]

Share this article on