Answer Posted / modi[achir communication]
[Short answer: threads are lightweight, programs (aka
processes or tasks) are heavyweight. -Alex]
Lightweight and heavyweight processes refer the mechanics of
a multi-processing system.
In a lightweight process, threads are used to divvy up the
workload. Here you would see one process executing in the OS
(for this application or service.) This process would posess
1 or more threads. Each of the threads in this process
shares the same address space. Because threads share their
address space, communication between the threads is simple
and efficient. Each thread could be compared to a process in
a heavyweight scenario.
In a heavyweight process, new processes are created to
perform the work in parallel. Here (for the same application
or service), you would see multiple processes running. Each
heavyweight process contains its own address space.
Communication between these processes would involve
additional communications mechanisms such as sockets or pipes.
The benefits of a lightweight process come from the
conservation of resources. Since threads use the same code
section, data section and OS resources, less overall
resources are used. The drawback is now you have to ensure
your system is thread-safe. You have to make sure the
threads don't step on each other. Fortunately, Java provides
the necessary tools to allow you to do this.
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
What are the components of swing?
Write a program to paint the off-screen buffer in swings
What is jpanel swing?
What are differences between swing and awt?
What are the components of swing in java?
What is an on stage swing?
When we should go for codebase in applet?
What is difference between swing and awt?
What is frame in java swing?
What is swing in java javatpoint?
What are the swing components?
How to generate bill in java swing?
What is pane in swing?
What is the use of swing in java?
How to change button color in java swing?