小弟的第二篇j2se學習筆記,如果有錯誤或者遺漏的地方,還懇請各位高手老鳥們不要見笑,多給小弟一些批評,建議!
一、線程的基本概念
簡單的說:線程就是一個程序里不同的執行路徑
在同一個時間點上cpu只會有一個線程在執行
Java里的多線程是通過java.lang.Thread類來實現的
每個線程都擁有自己獨立的方法棧空間
二、java線程的創建和啟動
第一種
定義線程類實現Runnable接口
Thread myThread = new Thread(target) //target為Runnable接口類型
Runnable中只有一個方法:
public void run();用以定義線程運行體
第二種
可以定義一個Thread的子類并重寫其run方法:
clas MyThread extends Thread{
public void run(){}
}
線程類必須通過執行Thread的start()方法啟動一個新的線程
如果調用run()方法是屬于方法的調用,不會啟動一個新的線程
推薦使用第一種方式創建線程,使用接口較為靈活
二、線程狀態裝換
調用線程start()方法時,線程進入就緒狀態,Cpu分配時間片,線程進入運行狀態
時間片結束,run()方法未執行完,線程進入阻塞狀態。
三、線程控制基本方法
isAlive() //判斷線程是否還“活著”,即線程是否還未終止
getPriority() //獲得線程的優先級數值
setPriority() //設置線程的優先級指數
Thread.sleep() //靜態方法,將當前線程睡眠指定毫秒數
join() //調用某線程的該方法,將當前線程與該線程合并,
//即等待該線程結束,再回復當前線程的運行。
yield() //讓出CPU,當前線程進入就緒狀態等待調度
interrupt() //中斷線程
wait() //當前線程進入對象的wait pool
notify()/all //喚醒對象的wait pool中的一個/所有等待線程
四、sleep方法
Thread的靜態方法
public static void sleep(long millis)throws InterruptedException
必須對異常進行捕捉
Thread.currentThread(); //拿到當前線程
五、interrupt方法一種讓線程退出的方式。
public class TestInterrupt{
public static void main(String[] args){
MyThread t = new MyThread();
t.start();
try{Thread.sleep(10000);}
catch(InterruptedException i){}
t.interrupt();
}
}
class MyThread extends Thread{
public void run(){
while(true){
try{
System.out.println("------"+new Date()+"-----");
Thread.sleep(1000);
}catch(InterruptedException i){
return;
}
}
}
}
六、join和yield方法
t.join(); //t的run()方法完才會繼續執行當前線程方法體
//也就是兩個線程變成了一個線程
t.yield(); //暫停當前正在執行的線程對象,并執行其他線程。方法為靜態
//哪個線程體執行此方法,哪個線程讓步
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);}
public void run(){
for(int i =1;i<=100;i++){
System.out.println(getName()+": "+i);
if(i%10==0){
yield();
}
}
}
}
七、線程優先級別
線程的優先級用數字表示,范圍從1到10,一個線程的缺省優先級為5.
Thread.MAX_PRIORITY=1
Thread.MIN_PRIORITY=10
Thread.NORM_PRIORITY=5
例:t.setPriority(Thread.NORM_PRIORITY+3);
★八、線程同步
1.同步代碼塊
synchronized(this){ //在執行代碼塊過程中,不會被其他線程打斷
...
}
public sunchronized void method //執行此方法時,當前對象被鎖定
在Java語言中,引入了對象互斥鎖的概念,保證共享數據操作的完整性,每個對象 都對應一個可稱為"互斥鎖"的標記,這個標記保證在任一時刻,只能有一個線程訪 問該對象。
2.線程死鎖
public int flag = 1;
static Object o1 = new Object(), o2 = new Object();
public void run() {
System.out.println("flag=" + flag);
if(flag == 1) {
synchronized(o1) {
try {
Thread.sleep(500);
} catch (Exception e) {
e.printStackTrace();
}
synchronized(o2) {
System.out.println("1");
}
}
}
if(flag == 0) {
synchronized(o2) {
try {
Thread.sleep(500);
} catch (Exception e) {
e.printStackTrace();
}
synchronized(o1) {
System.out.println("0");
}
}
}
}
public static void main(String[] args) {
TestDeadLock td1 = new TestDeadLock();
TestDeadLock td2 = new TestDeadLock();
td1.flag = 1;
td2.flag = 0;
Thread t1 = new Thread(td1);
Thread t2 = new Thread(td2);
t1.start();
t2.start();
}
}
九、生產者消費者問題
public static void main(String[] args) {
SyncStack ss = new SyncStack();
Producer p = new Producer(ss);
Consumer c = new Consumer(ss);
new Thread(p).start();
new Thread(p).start();
new Thread(p).start();
new Thread(c).start();
}
}
class WoTou {
int id;
WoTou(int id) {
this.id = id;
}
public String toString() {
return "WoTou : " + id;
}
}
class SyncStack { //棧實現
int index = 0;
WoTou[] arrWT = new WoTou[6]; //相當于裝物品的籃子
public synchronized void push(WoTou wt) { //生產物品,線程安全
while(index == arrWT.length) { //當籃子滿了線程等待
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
this.notifyAll(); //開始生產時,叫醒等待的其他線程開始消費
arrWT[index] = wt;
index ++;
}
public synchronized WoTou pop() { //消費物品,線程安全
while(index == 0) { //如果籃子空了
try {
this.wait(); //線程等待,等待生產者開始 //生產,叫醒此線程
} catch (InterruptedException e) {
e.printStackTrace();
}
}
this.notifyAll(); //消費時喊醒生產者生產
index--;
return arrWT[index];
}
}
class Producer implements Runnable { //生產者類
SyncStack ss = null;
Producer(SyncStack ss) {
this.ss = ss;
}
public void run() {
for(int i=0; i<20; i++) { //生產20個
WoTou wt = new WoTou(i);
ss.push(wt);
System.out.println("生產了:" + wt);
try {
Thread.sleep((int)(Math.random() * 200));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
class Consumer implements Runnable {
SyncStack ss = null;
Consumer(SyncStack ss) {
this.ss = ss;
}
public void run() {
for(int i=0; i<20; i++) { //消費20個
WoTou wt = ss.pop();
System.out.println("消費了: " + wt);
try {
Thread.sleep((int)(Math.random() * 1000));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}