在單線程中
當程序啟動運行是就自動產生了一個線程
創建多線程有兩種方法
一個java
通過Thread類和它定義的對象
實現多線程
啟動一個新的線程
Thread類對象的start方法將產生一個新的線程
由於線程代碼段在run方法中
public class ThreadDemo {
public static void main(String args[]){
new TestThread()
TestThread
TestThread thread
thread
thread
/*while(true){
System
}
*/
}
}
class TestThread extends Thread {
public void run(){
while(true){
System
try {
Thread
} catch (InterruptedException e) {
// TODO Auto
e
}
}
}
}
class TestThread
public void run(){
while(true){
System
try {
Thread
} catch (InterruptedException e) {
// TODO Auto
e
}
}
}
}
copy from book
From:http://tw.wingwit.com/Article/program/Java/gj/201311/27388.html