Java Multithreading concept is implemented by using the following two model-
- Green Thread Model
- Native OS Model
Green Thread
The Thread which is managed Completley by JVM without taking underline OS support , is known as green Thread. Very few Operating System like Sun Solaris OS provides support for Green Thread model. Anyway Green Thread model is deprecated and not recommended to use.
Native OS
The Thread which is managed by JVM with the help of Underlying OS , is known as Native OS model.
Similar Java Tutorials
- Odd Even in Java
- Fibonacci Series Java
- Switch statements in Java
- For loop in Java
- While loop in Java
- Interface vs abstract class
- Method to print exception information in Java
- Exception Handling by Using try-catch in Java
- Checked Exception vs Unchecked Exception
- Exception Hierarchy in Java
- Java Exception Handling Interview Questions
- final finally finalize in java
- User Defined Exception in Java
- Exception Handling Keyword in Java
- throw throws in Java
- try with multiple catch block in Java
- Threads in Java
- Thread priority in Java
- Threads communication in Java
- Daemon Thread in Java