Thead

difference between thread and process
[44 byte] By [sraa_rpva] at [2007-10-3 2:28:36]
# 1
[url= http://www.googleityoumoron.com/?go=difference+between+thread+and+process]difference between thread and process[/url]
JoachimSauera at 2007-7-14 19:27:41 > top of Java-index,Java Essentials,New To Java...
# 2
Processes are handled (i.e. created, destroyed) by the operating system, threads are handled via software. They are often called "lightweight processes", because they are easier and cheaper to handle than processes.
Mongera at 2007-7-14 19:27:41 > top of Java-index,Java Essentials,New To Java...
# 3
hiProcess is nothing but a sequence of running and execution of your programThread is a sequential flow of control.That's mean in Thread u have control of your program.hope this will helpful to u....!!saM
saM@spia at 2007-7-14 19:27:41 > top of Java-index,Java Essentials,New To Java...
# 4

> Process is nothing but a sequence of running and

> execution of your program

>

> Thread is a sequential flow of control.

>

> That's mean in Thread u have control of your

> program.

>

> hope this will helpful to u....!!

Processes and threads are similar, but processes are handled by the OS while threads only exist inside a JVM - within the same process. I'm afraid you were far off.

> saM

CeciNEstPasUnProgrammeura at 2007-7-14 19:27:41 > top of Java-index,Java Essentials,New To Java...