Runnable
-
Thread and RunnableStaticPL/JAVA 2019. 8. 18. 20:33
1. Overview Summarize Thread in JAVA. Thread class provides constructors and methods to create and perform operations on a thread. It is derived from Object class and implements the Runnable interface. Threads can be created by using two mechanisms : Extending the Thread class Implementing the Runnable Interface 2. The life cycle of Threads 2.1 NEW Thread instance newly created, have not started..