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.

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

private int ahorros = 0;<br />

public synchronized void mete ( int cantidad ) {<br />

ahorros = ahorros + cantidad;<br />

}<br />

public synchronized int ahorros () { return ahorros; }<br />

}<br />

public c<strong>la</strong>ss Ahorrador extends <strong>Thread</strong> {<br />

Hucha hucha;<br />

int iteraciones;<br />

public Ahorrador ( String nombre, Hucha hucha, int iteraciones ) {<br />

super (nombre);<br />

this.hucha = hucha;<br />

this.iteraciones = iteraciones;<br />

}<br />

public void run () {<br />

for (int i=1; i

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

Saved successfully!

Ooh no, something went wrong!