Green Thread

Green Thread

View Answers

May 19, 2008 at 1:50 PM

Hi friend

Green threads are simulated threads within the VM and were used prior to going to a native OS threading model in 1.2 and beyond. Green threads may have had an advantage on Linux at one point (since you don't have to spawn a process for each native thread), but VM technology has advanced significantly since version 1.1 and any benefit green threads had in the past is erased by the performance increases over the years.

This is simple program of thread

public class ThreadExample extends Thread {
public ThreadExample(String str) {
super(str);
}
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(i + " " + getName());
try {
sleep((int)(Math.random() * 1000));
} catch(InterruptedException e){
System.out.println(e);
}
}
System.out.println("Complete! " + getName());
}
public static void main (String[] args) {
new ThreadExample("Roseindia").start();
new ThreadExample("javajazzup").start();
new ThreadExample("newstrackindia").start();
System.out.println("Welcome to Roseindia");
}
}

----------------------------
Read for more information

http://www.roseindia.net/java/









Related Tutorials/Questions & Answers:
Green Thread - Java Beginners
Green Thread  Hello, Can any one say the definition and use of Green Thread in java. Thanks in advance...  Hi friend Green threads... threading model in 1.2 and beyond. Green threads may have had an advantage
thread
thread  can parent thread be dead if child thread is not dead
Advertisements
Thread
Thread  Thread Life Cycle
Thread
Thread  what is the use of thread
Thread
Thread  Explain two ways of creating thread in java. Explain at three methods of thread class.   Java Create Thread There are two main ways of creating a thread. The first is to extend the Thread class and the second
Thread
Thread  What is multi-threading? Explain different states of a thread... processor system. States of Thread: New state ? After the creations of Thread instance the thread is in this state but before the start() method invocation
Thread
to the thread constructor eventhough we had created only one thread and if you say we have added to point to the current thread then why we have not added this in the following line "s=s1" Pls reply...... class MyThread extends Thread { Thread
Thread
Thread  what happen when we call the Wait(),Notify() and NotifyAll() methods in the Thread
Thread
Thread  class Extender extends Thread { Extender(Runnable run...(); } public void run(){ System.out.println("Extender Thread is Started :"); //new Thread(new Implementer()).start(); } } class Implementer
Thread
Thread  will this code work..? class A extends Thread { public...=" + i); } public static void main(string args[]) { A a = new A(); Thread t = new thread(a); t.start(); } } Is it possible to run above program with out
Thread
Thread  Write a Java program to create three theads. Each thread should produce the sum of 1 to 10, 11 to 20 and 21to 30 respectively. Main thread....   Java Thread Example class ThreadExample{ static int
Thread
Thread   there are two threads running at a time.. when am updating a values in database. both thread halt and stop for moment till it get updated into database... so i dnt want thread to get halts for tht moment of period. whats
ModuleNotFoundError: No module named 'green'
ModuleNotFoundError: No module named 'green'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'green' How to remove the ModuleNotFoundError: No module named 'green'
ModuleNotFoundError: No module named 'green'
ModuleNotFoundError: No module named 'green'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'green' How to remove the ModuleNotFoundError: No module named 'green'
Thread in java
Thread in java  which method will defined in thread class
Daemon thread
Daemon thread  what is need of daemon thread
Daemon thread
Daemon thread  what is need of daemon thread
java Thread
java Thread  what is purpose of Thread
Java thread
Java thread  How can a dead thread be restarted?  A dead thread cannot be restarted
Thread restart
Thread restart  hello,, can dead thread restart?   hii,ADS_TO_REPLACE_1 A dead Thread can't restart not even by calling start() again on that object
Java thread
Java thread  What's the difference between a thread's start() and run() methods
Java thread
Java thread  What is the difference between process and thread
Thread method
Thread method  What is the purpose of the wait(), notify(), and notifyAll() methods
Java thread
Java thread  What invokes a thread's run() method
Java thread
Java thread  What are the ways in which you can instantiate a thread
Java thread
Java thread  What are the high-level thread states
Demon thread
Demon thread  What is demon thread? why we need Demon thread?  ... there are daemon thread by killing them abruptly.Any thread can be a daemon thread... = window.adsbygoogle || []).push({}); http://www.roseindia.net/java/thread/daemon
Thread scheduling
Thread scheduling  What is the algorithm used in Thread scheduling?  Java uses fixed-priority scheduling algorithms to decide which thread... on the basis of their priority relative to other Runnable threads. The thread
ModuleNotFoundError: No module named 'pars-green'
ModuleNotFoundError: No module named 'pars-green'  Hi, My Python... 'pars-green' How to remove the ModuleNotFoundError: No module named 'pars-green' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'green-example'
ModuleNotFoundError: No module named 'green-example'  Hi, My... 'green-example' How to remove the ModuleNotFoundError: No module named 'green-example' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'green-magic'
ModuleNotFoundError: No module named 'green-magic'  Hi, My Python... 'green-magic' How to remove the ModuleNotFoundError: No module named 'green-magic' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'green-pg'
ModuleNotFoundError: No module named 'green-pg'  Hi, My Python... 'green-pg' How to remove the ModuleNotFoundError: No module named 'green-pg... to install padas library. You can install green-pg python with following
ModuleNotFoundError: No module named 'green-ssl'
ModuleNotFoundError: No module named 'green-ssl'  Hi, My Python... 'green-ssl' How to remove the ModuleNotFoundError: No module named 'green... have to install padas library. You can install green-ssl python with following
ModuleNotFoundError: No module named 'setuptools-green'
ModuleNotFoundError: No module named 'setuptools-green'  Hi, My... named 'setuptools-green' How to remove the ModuleNotFoundError: No module named 'setuptools-green' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'green-monkey'
ModuleNotFoundError: No module named 'green-monkey'  Hi, My Python... 'green-monkey' How to remove the ModuleNotFoundError: No module named 'green-monkey' error? Thanks   Hi, In your python
daemon thread
daemon thread  hello, What is a daemon thread?   hello,ADS_TO_REPLACE_1 These are the threads which can run without user intervention. The JVM can exit when there are daemon thread by killing them abruptly
Create Thread by Extending Thread
Create Thread by Extending Thread This section explain how to create thread by extending Thread class in java. Extending Thread : You can create thread by extending Thread class and then by creating instance of that class you can
Java thread
Java thread  Why do threads block on I/O?   When a thread... and in that time some other thread which is not waiting for that IO gets a chance to execute.If any input is not available to the thread which got suspended for IO
Thread in Nutshell
Thread in Nutshell  Hi, I m confused about what is called a thread actually in a program. There are many answer to this question on the web...; Please go through the following link: Thread Tutorials
Main Thread and Child Thread
and Child Threads used in Programming. Main thread is automatically created when program runs. Child Thread gets created by the main thread . Java Main Thread Example public class mainchild implements Runnable { Thread t1
Thread concept
Thread concept  Everytime when i run a multithread program it gives... in advance friends. Happy new year!!!!! class Newthread3 implements Runnable{ Thread t; String name; Newthread3(String threadname){ name=threadname; t=new Thread
Green UML
Green UML       green is a LIVE round-tripping editor, meaning that it supports both software engineering and reverse engineering. You can use green to create a UML
Exception in thread
Exception in thread   Hi, In my code following error is coming: Exception in thread "main" java.lang.NoClassDefFoundError: org/json/JSONObject I have imported: import org.json.JSONObject; but its not working. What
thread dump
thread dump  Hi, I wanted to understand the Locked/waiting state below in the java thread dump. Is it normal to have waiting on locked object monitor value to be same, in the snippet below both are<0x701dd1e0> i see a lot
Exception in thread
Exception in thread   Hi, In my code following error is coming: Exception in thread "main" java.lang.NoClassDefFoundError: org/json/JSONObject I have imported: import org.json.JSONObject; but its not working. What
Version of excalibur-thread>excalibur-thread dependency
List of Version of excalibur-thread>excalibur-thread dependency
Exception in thread
Exception in thread   Hi, I have created a java file for sending a file to my mail. I am using mail.jar file. I am able to create .class file...:\mail.jar SendMailTLSDFC Exception in thread "main" java.lang.NoClassDefFoundError
Exception in Thread
Exception in Thread    i am developing a rmi application in eclipse use genady rmi plugin and server side code run effeciently but when i run... : Blockquote Exception in thread "RMI TCP Connection(idle
Green Laser
Green Laser       Green laser is a gas laser using mercury and argon it generates a green beam..., astronomy, and in sea, while green laser is especially used in astronomy
Thread

Ads