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
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.
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.
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)
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.