|
|
![]() |
| Thread Tools | Search this Thread |
#1
| |||
| |||
What is threading in JAVA? Hi, What is threading in JAVA? |
#2
| |||
| |||
Re: What is threading in JAVA? a thread is a program's path of execution. Most programs written today run as a single thread, causing problems when multiple events or actions need to occur at the same time. Let's say, for example, a program is not capable of drawing pictures while reading keystrokes. The program must give its full attention to the keyboard input lacking the ability to handle more than one event at a time. The ideal solution to this problem is the seamless execution of two or more sections of a program at the same time. Threads allows us to do this. Multithreaded applications deliver their potent power by running many threads concurrently within a single program. From a logical point of view, multithreading means multiple lines of a single program can be executed at the same time, however, it is not the same as starting a program twice and saying that there are multiple lines of a program being executed at the same time. In this case, the operating system is treating the programs as two separate and distinct processes. Under Unix, forking a process creates a child process with a different address space for both code and data. However, fork() creates a lot of overhead for the operating system, making it a very CPU-intensive operation. By starting a thread instead, an efficient path of execution is created while still sharing the original data area from the parent. The idea of sharing the data area is very beneficial |
#3
| |||
| |||
Re: What is threading in JAVA? Threads A thread is in process in execution within a program. Within a program each thread defines a separate path of execution. Creation of a thread A thread can be created in two ways a) By implementing the Runnable interface. The Runnable interface consists of only one method - the run method. The run method has a prototype of Code: public void run(); Execution of a thread To execute a thread, the thread is first created and then the start() method is invoked on the thread. Eventually the thread would execute and the run method would be invoked. The example below illustrates the two methods of thread creation. You should note that the run method should not be invoked directly. Code: public class ThreadExample extends Thread { public void run() { System.out.println("Thread started"); } public static void main(String args[]) { ThreadExample t = new ThreadExample(); t.start(); } } Thread class. When the run method ends, the thread is supposed to "die". The next example shows the creation of thread by implementing the Runnable interface. Code: public class ThreadExample2 implements Runnable { public void run() { .../* Code which gets executed when thread gets executed. */ } public static void main(String args[]) { ThreadExample2 Tt = new ThreadExample2(); Thread t = new Thread(Tt); t.start(); } } Example - Creating thread by implementing Runnable |
#4
| |||
| |||
Re: What is threading in JAVA? Please go through this tutorial http://www.freejavaguide.com/java-threads-tutorial.pdf I hope this helps you! |
![]() |
|
Tags: java, threading |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Threading in c# .net | Athreya | Software Development | 3 | 12-01-2011 03:29 PM |
What is Hyper threading | Ameeryan | Overclocking & Computer Modification | 2 | 06-10-2009 04:03 PM |
What is Threading in C# Programming ? | HAKAN | Software Development | 2 | 31-03-2009 11:18 AM |
VB.NET threading question | AmolP | Software Development | 3 | 14-02-2009 06:03 PM |
Threading Unleashed | Cool_Rahul | Software Development | 0 | 19-12-2008 01:39 PM |