Universidad de Costa Rica
Escuela de Ciencias de la Computación e Informática
CI-0122 Sistemas operativos
Ejemplos
|
|
CI0122 /
Ejemplos
|
public class Loop1 extends Thread
{
private String myName; // Identifier for the thread
public Loop1(String name) {
myName = name;
}
public void run() {
for(int i = 1; i <= 10000; i++)
{
System.out.println(myName + " (" + i + ")");
}
}
public static void main(String[] args) {
Loop1 t1 = new Loop1("Thread 1"); // Creating three threads
Loop1 t2 = new Loop1("Thread 2");
Loop1 t3 = new Loop1("Thread 3");
t1.start(); // Starting each thread
t2.start();
t3.start();
}
}