jfcmacro

EjemploHilo3.java

Mar 27th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. class EjemploHilo3 implements Runnable {
  2.  
  3.     public void run() {
  4.     System.out.println("Esto es otro hilo: " + Thread.currentThread());
  5.     }
  6.  
  7.     public static void main(String []args) {
  8.     Thread eh3_1 = new Thread(new EjemploHilo3(), "Ejemplo hilo 3 1");
  9.     Thread eh3_2 = new Thread(new EjemploHilo3(), "Ejemplo hilo 3 2");
  10.  
  11.     eh3_1.start();
  12.     eh3_2.start();
  13.     System.out.println("Estos un hilo " + Thread.currentThread());
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment