You are on page 1of 1

Multithreading is process of running two or more part of program in parallel, in each part is known as

thread.

We can create thread using two ways


1> By extending thread class
2> By Implementing Runnable Interface

life cycle of thread


start()
run()
runnable()
wait()

You might also like