Java

You might also like

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 2

 New − A new thread begins its life cycle in the new state.

It remains in this
state until the program starts the thread. It is also referred to as a born
thread.
 Runnable − After a newly born thread is started, the thread becomes
runnable. A thread in this state is considered to be executing its task.
 Waiting − Sometimes, a thread transitions to the waiting state while the
thread waits for another thread to perform a task. A thread transitions back to
the runnable state only when another thread signals the waiting thread to
continue executing.
 Timed Waiting − A runnable thread can enter the timed waiting state for a
specified interval of time. A thread in this state transitions back to the runnable
state when that time interval expires or when the event it is waiting for occurs.
 Terminated (Dead) − A runnable thread enters the terminated state when it
completes its task or otherwise terminates.
A Package can be defined as a grouping of related types (classes, interfaces,
enumerations and annotations ) providing access protection and namespace
management.
Some of the existing packages in Java are −
 java.lang − bundles the fundamental classes
 java.io − classes for input , output functions are bundled in this package
Following package example contains interface named animals −
/* File name : Animal.java */
package animals;

interface Animal {
public void eat();
public void travel();
}
Now, let us implement the above interface in the same package animals −
package animals;
/* File name : MammalInt.java */

public class MammalInt implements Animal {

public void eat() {


System.out.println("Mammal eats");
}

public void travel() {


System.out.println("Mammal travels");
}
public int noOfLegs() {
return 0;
}

public static void main(String args[]) {


MammalInt m = new MammalInt();
m.eat();
m.travel();
}
}
Now compile the java files as shown below −
$ javac -d . Animal.java
$ javac -d . MammalInt.java

Java Threads are lightweight compared to processes, it takes less time and
resource to create a thread.

Threads share their parent process data and code

Context switching between threads is usually less expensive than between


processes.

Thread intercommunication is relatively easy than process communication.

Java provides two ways to create a thread programmatically.

Implementing the java.lang.Runnable interface.


Extending the java.lang.Thread class.

You might also like