15.05.2013 Views

Clase Thread - docencia de la ETSIT-URJC

Clase Thread - docencia de la ETSIT-URJC

Clase Thread - docencia de la ETSIT-URJC

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Implementando <strong>la</strong> interfaz Runnable<br />

public c<strong>la</strong>ss Nombre implements Runnable {<br />

String nombre;<br />

public Nombre ( String nombre ){<br />

this.nombre = nombre;<br />

}<br />

public void run() {<br />

while( true ) {<br />

System.out.println<br />

(System.currentTimeMillis() + ": " + nombre);<br />

}<br />

}<br />

}<br />

public c<strong>la</strong>ss Prueba {<br />

public static void main( String[] args ) {<br />

Runnable n1 = new Nombre ( "Jaime" );<br />

Runnable n2 = new Nombre ( " Lo<strong>la</strong>" );<br />

<strong>Thread</strong> t1 = new <strong>Thread</strong>(n1); t1.start();<br />

<strong>Thread</strong> t2 = new <strong>Thread</strong>(n2); t2.start();<br />

}<br />

}<br />

<strong>Thread</strong> principal<br />

<strong>Thread</strong> Jaime<br />

<strong>Thread</strong> Lo<strong>la</strong><br />

$ java Prueba<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Jaime<br />

1177438860272: Jaime<br />

1177438860272: Jaime<br />

1177438860272: Jaime<br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime<br />

1177438860272: Lo<strong>la</strong><br />

1177438860272: Jaime

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!