Ejemplo 1: creación de hilo en el ejemplo de Java
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();
}
}
Ejemplo 2: iniciar hilo java
package com.tutorialspoint;
import java.lang.*;
public class ThreadDemo implements Runnable {
Thread t;
ThreadDemo() {
// thread created
t = new Thread(this, "Admin Thread");
// prints thread created
System.out.println("thread = " + t);
// this will call run() function
System.out.println("Calling run() function... ");
t.start();
}
public void run() {
System.out.println("Inside run()function");
}
public static void main(String args[]) {
new ThreadDemo();
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)