threads in java tutorial code example
Example 1: creating thread in java example
class Multi3 implements Runnable{
public void run(){
System.out.println("thread is running...");
}
public static void main(String args[]){
Multi3 m1=new Multi3();
Thread t1 =new Thread(m1);
t1.start();
}
}
Example 2: threads java
// Copy and test
// They run simultaneously
public static void main(String[] args) {
// How to create a thread
Thread thread = new Thread(new Runnable() {
@Override
// Loop running in thread
public void run() {
for (int i = 0; i < 20; i++) {
System.out.println("Printing plus " + i + " in a worker thread.");
try {
Thread.sleep(1000);
} catch(Exception e) {
e.printStackTrace();
}
}
}
});
thread.start();
// Loop running in main thread
for (int j = 0; j < 20 ; j++) {
System.out.println("Printing plus " + j + " in a main thread.");
try {
Thread.sleep(900);
} catch(Exception e) {
e.printStackTrace();
}
}
}
Example 3: multithreading in java simple example
class MultithreadingDemo extends Thread{
public void run(){
System.out.println("My thread is in running state.");
}
public static void main(String args[]){
MultithreadingDemo obj=new MultithreadingDemo();
obj.start();
}
}