老师讲解形象生动,概念容易理解记忆,虽然第一遍故事内容有可能掩盖线程概念,但看多两遍就行了;
如果是看直白书描的话,可能看10次都不好理解记忆。
如果是看直白书描的话,可能看10次都不好理解记忆。
2017-01-24
public void run(WrongWayStopThread ws){
while(ws.isInterrupted()){
System.out.println("Thread is running...");
long time = System.currentTimeMillis();
while(System.currentTimeMillis()-time < 1000){
}
}
}
while(ws.isInterrupted()){
System.out.println("Thread is running...");
long time = System.currentTimeMillis();
while(System.currentTimeMillis()-time < 1000){
}
}
}
2017-01-21