Yield问题
public class TestYield {public static void main(String[] args) {
MyThread3 t1 = new MyThread3("t1");
MyThread3 t2 = new MyThread3("t2");
t1.start(); t2.start();
}
}
class MyThread3 extends Thread {
MyThread3(String s)
{
super(s); //调用父类Thread 我是这样理解的 这里写super(s);调用Thread有参数的构造方法,可这里没写出Thread带参数的构造方法,为什么不出错?
}
public void run(){
for(int i =1;i<=100;i++){
System.out.println(getName()+": "+i);
if(i%10==0){
yield();
}
}
}
}
刚看了马老师的视频 有点疑惑