I\'m getting an error: The method sleep(int) is undefined for the type Thread. I thought the sleep method is in the Thread class in Java.
import java.util.Ra
You implemented your own class called Thread
and try to call sleep
on it, which fails, cause sleep
is undefined in your class. Your class basically shadows java's Thread
class.
Call your class differently (ie. MyThread
or even better MyRunnable
, as noted by owlstead) or call java.lang.Thread.sleep()
directly.