jfcmacro

EjemploHilo2.java

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