Difference between Thread & Process
posted 25 years ago
Can anyone tell about the difference between a Thread and a process?
I was asked this question in one of the interview.
Thanks in advance.
Mukesh
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Can anyone tell about the difference between a Thread and a process?
I was asked this question in one of the interview.
Thanks in advance.
Mukesh
posted 25 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Hi ,
Mukesh you can check out the link here for some info http://www.javaranch.com/ubb/Forum27/HTML/000057.html
Mukesh you can check out the link here for some info http://www.javaranch.com/ubb/Forum27/HTML/000057.html
Mukesh Rathod
Ranch Hand
Posts: 32
posted 25 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Hi Rahul,
Thanks for repy.
Can you please give me some link to reading material on Process?
mukesh
Thanks for repy.
Can you please give me some link to reading material on Process?
mukesh
posted 25 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Mukesh,
In a nutshell, a process can contain multiple threads.
In most multithreading operating systems, a process gets its own memory address space; a thread doesn't. Threads typically share the heap belonging to their parent process.
For instance, a JVM runs in a single process in the host O/S. Threads in the JVM share the heap belonging to that process; that's why several threads may access the same object.
Typically, even though they share a common heap, threads have their own stack space. This is how one thread's invocation of a method is kept separate from another's.
This is all a gross oversimplification, but it's accurate enough at a high level. Lots of details differ between operating systems.
jply
In a nutshell, a process can contain multiple threads.
In most multithreading operating systems, a process gets its own memory address space; a thread doesn't. Threads typically share the heap belonging to their parent process.
For instance, a JVM runs in a single process in the host O/S. Threads in the JVM share the heap belonging to that process; that's why several threads may access the same object.
Typically, even though they share a common heap, threads have their own stack space. This is how one thread's invocation of a method is kept separate from another's.
This is all a gross oversimplification, but it's accurate enough at a high level. Lots of details differ between operating systems.
jply
Mukesh Rathod
Ranch Hand
Posts: 32
posted 25 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Hi Jerry
Thanks a lot for good explanation.
Mukesh
Thanks a lot for good explanation.
Mukesh
posted 25 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Just to complicate this a little, some operating systems (mainly Linux at the moment) provide what is known as "native threads". These share process resources in the same way as threads described above, but also appear in the process listing and may be manipulated using process control tools. Older Linux JVMs used "green threads" which are all hidden inside a single process, but JDK 1.3 uses native threds by default.
A typical comment from someone who has just upgraded to JDK 1.3 might be "How come there are now 5 copies of my Java Virtual Machine running when my application only used to need one?" If you see this kind of thing, don't worry, it's just Linux native threads.
A typical comment from someone who has just upgraded to JDK 1.3 might be "How come there are now 5 copies of my Java Virtual Machine running when my application only used to need one?" If you see this kind of thing, don't worry, it's just Linux native threads.
posted 25 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Is it true that in java each thread has two stacks. I read something like that in java security book. Can anybody explain how the thread uses two stacks?
| Seriously? That's what you're going with? I prefer this tiny ad: Paul Wheaton's 16th Kickstarter: Gardening playing cards for gardeners and homesteaders https://coderanch.com/t/889615/Paul-Wheaton-Kickstarter-Gardening-playing |








