Difference between Thread and Process in Java?

Compiled By Unknown - No Comments

Difference between Thread and Process

Thread is subset of Process, in other words one process can contain multiple threads. Two process runs on different memory space, but all threads share same memory space. Don't confuse this with stack memory, which is different for different thread and used to store local data to that thread.

Tags:

No Comment to " Difference between Thread and Process in Java? "