how to create multiple thread:multi tasking
Java provides built-in support for multithreaded programming. A multithreaded program contains two or more parts that can run concurrently. you have been using only two threads: the main thread and one child thread.
Creating Multiple Threads
Java provides built-in support for multithreaded programming. A multithreaded program contains two or more parts that can run concurrently. you have been using only two threads: the main thread and one child thread.