Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class EjemploHilo2 extends Thread {
- public EjemploHilo2() {
- super("EjemploHilo2");
- }
- public void run() {
- System.out.println("Esto es otro hilo: " + Thread.currentThread());
- }
- public static void main(String []args) {
- EjemploHilo2 eh2 = new EjemploHilo2();
- eh2.start();
- System.out.println("Estos un hilo " + Thread.currentThread());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment