Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: touchstone on February 11, 2004, 09:00 AM

Title: simple question
Post by: touchstone on February 11, 2004, 09:00 AM
Q1  :  i want to know what is the content of the run() method of thread class?

Q2 :  what is the job of  yield() method? can you explain it simple way?

thanks
Title: Re:simple question
Post by: iago on February 11, 2004, 09:55 AM
Quote from: touchstone on February 11, 2004, 09:00 AM
Q1  :  i want to know what is the content of the run() method of thread class?

Q2 :  what is the job of  yield() method? can you explain it simple way?

thanks

I don't know the answer, but you can almost certainly find it at http://java.sun.com.  
Title: Re:simple question
Post by: Banana fanna fo fanna on February 13, 2004, 06:29 PM
Quote from: touchstone on February 11, 2004, 09:00 AM
Q1  :  i want to know what is the content of the run() method of thread class?

Q2 :  what is the job of  yield() method? can you explain it simple way?

thanks

Q1:
it's empty.

Q2:
it pauses for an indeterminant slice time to give other threads a chance to run.
Title: Re:simple question
Post by: Dark-Feanor on February 17, 2004, 08:24 AM
You can look up any of this stuff on the Java Platform API specifications (http://java.sun.com/j2se/1.3/docs/api/index.html)
Title: Re:simple question
Post by: iago on February 17, 2004, 08:45 AM
Quote from: DaRk-FeAnOr on February 17, 2004, 08:24 AM
You can look up any of this stuff on the Java Platform API specifications (http://java.sun.com/j2se/1.3/docs/api/index.html)

That's almost exactly what I said.