Execution of Multiple Threads in Java

Execution of Multiple Threads in Java

Can anyone tell me how multiple threads get executed in java??I mean to say that after having called the start method,the run is also invoked, right??Now in my main method if I want to instantiate more than two instances of the same class which extends Thread,how and when will each of the child thread enter the run() and get executed??

class NewThread extends Thread {

NewThread() {

  // Create a new, second thread                                      
  super("Demo Thread");
  System.out.println("Child thread: " + this);
  start(); // Start the thread

}

// This is the entry point for the second thread.

public void run() {
try { for(int i = 5; i > 0; i--) {

        System.out.println("Child Thread: " + i);                                    
        // Let the thread sleep for a while.
        Thread.sleep(500);
     }
  } catch (InterruptedException e) {
     System.out.println("Child interrupted.");
  }
  System.out.println("Exiting child thread.");

} }

class ExtendThread {

public static void main(String args[]) {

  new NewThread(); // create a new thread
  try {
     for(int i = 5; i > 0; i--) {
        System.out.println("Main Thread: " + i);
        Thread.sleep(1000);
     }
  } catch (InterruptedException e) {
     System.out.println("Main thread interrupted.");
  }
  System.out.println("Main thread exiting.");

} }

If inside the ExtendThread class if I add another statement "new NewThread()" the first child thread after being created enters the run() along with the second child thread which also enters the run and both of them executes at the same time.But isn't it this way, the first child thread after being created is supposed to execute completely and only then the second child comes into the scene and executes.

View Answers









Related Tutorials/Questions & Answers:
Execution of Multiple Threads in Java
Execution of Multiple Threads in Java  Can anyone tell me how multiple threads get executed in java??I mean to say that after having called the start method,the run is also invoked, right??Now in my main method if I want
creating multiple threads - Java Beginners
creating multiple threads  demonstrate a java program using multiple thread to create stack and perform both push and pop operation synchronously.  Hi friend, Use the following code: import java.util.*; class
Advertisements
Time schedular for multiple batch file execution in java
Time schedular for multiple batch file execution in java  Hello All, i have a task in which i have to design a time schedular in java in which i can automate the batch file execution for the wholw day. For example i should have
Creating multiple Threads
In this section you will learn how to create multiple thread in java. Thread is a path of execution within a program, it is a part of process. JVM allow multiple thread to run concurrently. Each and every thread has the priority
Java Multithreading
. In Java, the Java Virtual Machine (JVM) allows an application to have multiple threads of execution running concurrently independently. When a program contains multiple threads then the CPU can switch between the two threads to execute them
threads in java
threads in java  how to read a file in java , split it and write into two different files using threads such that thread is running twice
Java threads
Java threads  What are the two basic ways in which classes that can be run as threads may be defined
threads in java
threads in java  iam getting that the local variable is never read in eclipse in main classas:: class Synex4{ public static void main(String args[]){ Test1 ob1=new Test1(); //local variable never read
threads in java - Java Beginners
threads in java  what is the difference between preemptive scheduling... continues to execute till its execution has completed until it enters... or the priority of one of the waiting threads is increased. While in Time Slicing
java threads - Java Beginners
java threads  What are the two basic ways in which classes that can be run as threads may be defined
Java Threads - Java Beginners
Java Threads  Why we use synchronized() method?  Hi Friend... allows the threads to wait for resources to become available and also notify the thread that makes resource available to notify other threads
Java Execution
Java Execution  How can you load DLL files when your java class is loading first time
Multithreading in Java
Multithreading in java is running multiple threads sharing same address space... contains multiple threads then the CPU can switch between the two threads... simultaneously. Each part is called a thread and has a separate path of execution
Java - Threads in Java
Java - Threads in Java       Thread is the feature of mostly languages including Java. Threads... or multiprogramming is delivered through the running of multiple threads concurrently
threads
threads  what are threads? what is the use in progarmming
multi threads - Java Beginners
multi threads  Hi i writing a multi threaded program in java .I m using three threads. I want to declare variables which will be available to all the threads to access. Is there a way to declare the variables as global variables
Multithreading Example In Java
of execution i.e. a Java application can contain the concurrently executable multiple... multithreading in Java. Multithreading in Java is used to execute multiple tasks... threads to execute them concurrently. In multithreading in Java some of the non
threads - Java Interview Questions
that will work even if many Threads are executing it simultaneously. Writing it is a black... interactions between Threads. You have to do it by logic. In a computer, something...://www.roseindia.net/java/ Thanks
Threads - Java Interview Questions
then it will make your class unable to extend other classes as java is having single inheritance.... If you want to create threads, please visit the following link: http://www.roseindia.net/java/thread/thread-creation.shtml Thanks
Threads - Java Beginners
Threads  hi, how to execute threads prgm in java? is it using...("/home/vinod/amarexamples:9090/" + "amarexamples/Threads/applet...://www.roseindia.net/java Thanks Amardeep
Threads,Servlets - Java Beginners
Threads,Servlets  1)Is two Start mathods exist in one Thread Class? like create an object ThreadClass a= new ThreadClass; a.start(); a.start(); 2)How can u refresh a Servlet when new record is added to D.Base
Java Batch Execution
Java Batch Execution  In a statement, I am executing a batch. What is the result of the execution?  It returns the int array.The array... execution actually in JDBC Present a series of independent statements to be executed
Threads in Java Swing MVC Application
Threads in Java Swing MVC Application  Hello, I am currently making a Java Swing application, but I am having a lot of trouble with implementing threads into my program. I use the MVC paradigm and I just can't seem to implement
execution of java program
execution of java program  wat are the steps for the execution of the servlet-jdbc program on tomcat 5.5 server.. PlS provide..the execution steps in detail..including the setting of classpath in DOS for mysql-connector-java. i
java threads - Java Beginners
java threads  What is Thread in Java and why it is used
Synchronized Threads
Synchronized Threads       In Java, the threads are executed independently to each other. These types...? to prevent data from being corrupted by multiple threads by a keyword synchronized
Synchronized Threads
; In Java, the threads are executed independently to each other. These types...? to prevent data from being corrupted by multiple threads by a keyword synchronized... has both synchronized and non-synchronized methods, multiple threads can
Threads
)Separates the code from execution 3)Allows you to run your runnable from a Thread Pool
Threads on runnable interface - Java Beginners
Threads on runnable interface  need a program.....please reply asap Create 2 threads using runnable interface.First threads shd print "hello...://www.roseindia.net/java/thread/thread-creation.shtml
Threads on runnable interface - Java Beginners
Threads on runnable interface  need a program.....please reply asap Create 2 threads using runnable interface.First threads shd print "hello..."); } } ----------------------------------------------- Read for more information. http://www.roseindia.net/java
Threads in Java
Threads in Java help in multitasking. They can stop or suspend a specific... temporarily and allows other threads to execute. Example of Threads in Java... in increasing the speed of the processes. In Java programming, Java Virtual Machine (JVM
regardoing multi threads - Java Beginners
regardoing multi threads  Hi Please tell me how to declare global variables in main thread so that all other threads can use them and value will be available to all threads. Thanks
java: try finally blocks execution
java: try finally blocks execution  java: try finally blocks execution
Java Execution Time Measurement(JETM)
Java Execution Time Measurement(JETM)  How can we integrate JETM in eclipse
java threads - Java Interview Questions
the priority of thread. Thanks  Hi, In Java the JVM defines priorities for Java threads in the range of 1 to 10. Following is the constaints defined...java threads  How can you change the proirity of number of a thread
multiple inheritance - Java Beginners
multiple inheritance  Why java does not support Multiple Inheritance...)why java classes does not support Multiple Inheritance? JAVA CLASSES ONLY NOT SUPPORT MULTIPLE INHERITANCE.But Java Interfaces can support Multiple
Java Execution Time Measurement(JETM)
Java Execution Time Measurement(JETM)  Whether JETM can be implemented in Struts framework especially in Struts2. If not,tell the alternative solution
Explain about threads:how to start program in threads?
; Learn Threads   Thread is a path of execution of a program... and print it simultaneously. Threads are called light weight processes. Every java...Explain about threads:how to start program in threads?  import
Storing Multiple image in sql using java
Storing Multiple image in sql using java  Hi, How to store and retrieve a multiple image in sql using java but already i have created sql table if i want to insert a image while runtime execution. Can anyone tell me solution
Execution - Java Beginners
Execution  Executing first java program
different execution time - Java Beginners
java code therefore due to the execution of other many processes into the system...different execution time    hello, when i run the bellow code more than one time i am getting different execution time("Total time taken"), Ex
Beep in Execution - Java Beginners
Beep in Execution  Hi everybody, I am now able to read the doc file in java but while executing it emitts beep sound everytime it reads from the file and displays the contents of doc file in command prompt. So help me
insert multiple selection - Java
insert multiple selection - Java  how to insert multiple selection values from html into database using servlets
java threads - Java Interview Questions
java threads  what is difference between the Notify and NotifyAll
multiple inheritance - Java Beginners
multiple inheritance  can u implement one class to more than one interface
pls tell me the difference between the run() and start() in threads in java....
pls tell me the difference between the run() and start() in threads in java....  difference between the run() and start() in threads in java
Does Java support multiple Inheritance?
Does Java support multiple Inheritance?  Hi, I am beginner in Java and trying to implement multiple inheritance in Java. But could not find any example. Does Java support multiple Inheritance? Thanks   Hi, Good
Does Java support multiple Inheritance?
Does Java support multiple Inheritance?  Hi, I am beginner in Java and trying to implement multiple inheritance in Java. But could not find any example. Does Java support multiple Inheritance? Thanks   Hi, Good
Does Java support multiple Inheritance?
Does Java support multiple Inheritance?  Hi, I am beginner in Java and trying to implement multiple inheritance in Java. But could not find any example. Does Java support multiple Inheritance? Thanks   Hi, Good
threads and events
threads and events  Can you explain threads and events in java for me. Thank you.   Java Event Handling Java Thread Examples

Ads