Java線程調度是Java多線程的核心
這裡要明確的一點
線程休眠的目的是使線程讓出CPU的最簡單的做法之一
線程休眠的方法是Thread
/**
* Java線程
*
* @author leizhimin
*/
public class Test {
public static void main(String[] args) {
Thread t
Thread t
t
t
}
}
class MyThread
public void run() {
for (int i =
System
try {
Thread
} catch (InterruptedException e) {
e
}
}
}
}
class MyRunnable implements Runnable {
public void run() {
for (int i =
System
try {
Thread
} catch (InterruptedException e) {
e
}
}
}
}
線程
線程
線程
線程
線程
線程
Process finished with exit code
從上面的結果輸出可以看出
本文出自
From:http://tw.wingwit.com/Article/program/Java/hx/201311/27157.html