Posts tagged "threads"

Understanding Multithreading in Java


Java provides built in support for multithreaded programming. A Multithreaded program contains two or more parts that can run concurrently. Each part of such a program is called a Thread. Each thread defines a separate path of execution. Multithreading is a specialized form of Multitasking.

Read more…



4 comments - What do you think?
Posted by Anand Narayanaswamy - January 16, 2009 at 1:23 am

Categories: Programming   Tags: Java, multithreading, threads