版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領
文檔簡介
Java基礎課程第十四章簡本課件由網(wǎng)新()軟件 (以下簡稱:網(wǎng)新)編制,網(wǎng)新仿真實訓的學網(wǎng)新享有本課件中的文字敘述、文檔格式、插圖、等所有信息資料的,受知識法及法等法律、的保護。任何個人或組織網(wǎng)新的 ,網(wǎng)新保留 上節(jié)課回 本課目線程的通訊(難點什么是線一個程序由一個或多個進程組成的,一個進程包含一個或多個線程進程(process)本質(zhì)上是一個可執(zhí)行的程序。操作系統(tǒng)引入進程概念象實例對應一個線程多線程則指的是在單個程序中可以同時運行多個不同的線什么是線 。 線程的調(diào)搶占式:高優(yōu)先級的線程搶占classMythreadextendsThreadpublicstaticvoidmain(Stringargs[])Threadt=tryfor(inti=0;i<3;i++)
輸出每個 暫停1500catch(InterruptedExceptione)}}ThreadThreadrunclassmythreadextendsThread{publicvoidrun**}Runnablerun。classmythreadimplementsRunnable{publicvoidrun(){/*實現(xiàn)該方法*/}}startMythreadt=newstartrun()Thread(Stringname)構(gòu)造名稱為name classMyThread1extendsThreadpublicstaticvoidmain(Stringargs[])Threadt=
或者使implementsMyThread1ex=new}publicvoidrun()}}Born)Ready)start(Running睡眠(Slee ):線程的執(zhí)行可通過使用sleep()方法來Waiting)waitResume)以說它已被恢復。阻塞(Blocked)– ,線程就處 狀態(tài)?,F(xiàn)在也不使用stop()方法新線程(新建
線程生命周ThreadstateNe
sleep()timeouorthreadjoin()orinterupt(
OtherwiseBlockedorstart( sleep(orjoin(Runnabl
Schedule
Runnin
run()complete
DeaLocavailabl synchronized(Blockedinobject`swait()pool
notify(interupt()
Blockedinobject`slockpool新死死注意stop()方法已經(jīng)被作
CPUsleep(waityieldCPUclassThreadStateDemoextendsThreadThreadpublicThreadStateDemo()t=newSystem.out.printlntSystem.out.printlnt.start();publicvoidrun()try{ System.out.printlntcatch(InterruptedExceptionIE)System.out.println");}publicstaticvoidmain(Stringargs[])newThreadStateDemo();線程類常用方currentThread()返回當前運行的Thread對象。start(run()線程體,由start()方法調(diào)用,當run()方法返sleep(intn)使線程睡眠n毫秒,n毫秒后,線程可線程類常用方resume()恢復掛起的線程,使其處于可運行狀態(tài)yield()將CPU控制權(quán)主動移交到下一個可運行線setName()設置線程的名字。isAlive()如果線程已被啟動并且未被終止,那么isAlive()返回true。如果返回false,則該線程是線程調(diào)讓處于運行狀態(tài)的線程調(diào)用Thread.sleep讓處于運行狀態(tài)的線程調(diào)用Thread.yield讓處于運行狀態(tài)的線程調(diào)用另一個線程的join()線程睡眠:Thread.sleep()方publicclassMyThreadextendsThread{publicvoidrun(){for(inttry{Thread.sleep(100);}catch(InterruptedExceptione){}}}publicstaticvoidmain(Stringargs[]){MyThreadt1=newMyThread();MyThreadt2=newMyThread();}}線程讓步:Thead.yield()方publicclassMyThreadextendsThread{publicvoidrun(){for(intSystem.out.println(Thread.currentThread().getName()+"}}publicstaticvoidmain(Stringargs[]){MyThreadt1=newMyThread();MyThreadt2=newMyThread();}}等待其他線程結(jié)束publicclassMachineextendsThread{publicvoidrun(){for(inta=0;a<10;a++)}publicstaticvoidmain(Stringargs[])throwsException{Machinemachine=newMachine();();}}線程類 publicfinalvoidsetDaemon(booleanpublicfinalbooleanisDaemon線程(精靈線程可以用方法publicbooleanisDaemon()確定一個線程是否守護線程,也可以用方法publicvoidsetDaemon(boolean)來設定一個線程為守護線程。 JavaThreadNORM_PRIORITYMAX_PRIORITYMIN_PRIORITYfinalvoidsetPriority(intnewp)finalintgetPriority共享資源的競當多個線程共些數(shù)據(jù),它們的操作會競爭共享資源,這以一個生產(chǎn)者(Producer),消費者(Consumer)為例,生產(chǎn)
堆棧privateStringintpoint=-1;…publicStringpop()Stringgoods=buffer[point];
push()
}publicvoidpush(Stringgoods){}生產(chǎn)者線classProducerextendsThread{privateStacktheStack;privateStringbuffer[3]buffer[2]buffer1]publicbuffer[3]buffer[2]buffer1]theStack=;
}publicvoidrun(){Stringgoods;for(inti=0;i<200;i++)System.out.println(name+":push"+goods+"to}}消費者線classConsumerextendsThreadprivateStringname;publicConsumer(Stacks,Stringname){=name;buffer[3]buffer[2]buffer[3]buffer[2]buffer1];
消費者線
}publicvoidrun(){Stringgoods;for(inti=0;i<200;i++){goods=theStack.pop();+":pop"+goods+"from"+theStack.getName());}}}創(chuàng)建生產(chǎn)者和消費者線publicclassTestpublicstaticvoidmain(Stringargs[]){Stackstack=newStack("stack1");Producerproducer1=newProducer(stack,"producer1");Consumerconsumer1=newConsumer(stack,"consumer1");}}生產(chǎn) 消費堆堆共享資源的競打打印結(jié)果producer1:pushgoods0tostack1consumer1:popnullfromstack1producer1:pushgoods0tostack1…線程的同同步是一種保證共享資源完整性publicStringpop(){Stringgoods=return
publicsynchronizedStringpop(){Stringgoods=buffer[point];}}} 堆棧的方法同classStack…publicsynchronizedintgetPoint(){returnpoint;}publicsynchronizedStringpop(){…}publicsynchronizedvoidpush(Stringgoods)}線程同修改完代碼以線程同在Product類的runstack線程 機制,在Java5之前,我們只能使用synchronized來鎖定。們使用ReentrantLock保證代碼線程安全privatestaticReentrantLocklock=new//執(zhí)行后釋放 堆棧的方法同 堆棧的方法同線程同步的特線程的同步的特publicstaticvoidmain(Stringargs[])Stackstack1=newProducerproducer1=newProducer(stack1,"producer1");Producerproducer2=newProducer(stack1,"producer2");Producerproducer3=newProducer(stack1,"producer3");Consumerconsumer1=newConsumer(stack1,"consumer1");Stackstack2=newStack("stack2");Producerproducer4=newProducer(stack2,"producer4");Consumerconsumer2=newConsumer(stack2,"consumer2");}}線程的同步的特
Stack1
wait()、notify()和notifyAll()方法。Objectfinal調(diào)用notify()方法。notify(waitnotifyAll(wait調(diào)用的線程放棄線程通 S生產(chǎn)者與消費者線程通classStack…publicsynchronizedStringpop(){}Stringgoods=buffer[point];point--return}publicsynchronizedvoidpush(Stringgoods){}生產(chǎn)者與消費者線程通classStack…publicsynchronizedvoidpush(Stringgoods){}}}生產(chǎn)者與消費者線程通publicclassTestpublicstaticvoidmain(Stringargs[]){Stackstack1=newStack("stack1");Producerproducer1=newProducer(stack1,"producer1");Consumerconsumer1=newConsumerconsumer2=new}}}生產(chǎn)者與消費者線程通–(1)執(zhí)行this.notifyAll()方法,此時this的stack1(2)由于point為-1,因此執(zhí)行this.wait()方法,生產(chǎn)者與消費者線程通 終止線 實際編程中,一般是定義一個標志變量,然后通過程序來改變標志變量的值,從而控制線run()方法中自然退出。終止線publicclassMyThreadStopextendsThread{inta;booleanflag=false;publicvoidrun(){}}publicvoidsetFlag(boolean_flag){}publicstaticvoidmain(Stringargs[]){try{Thread.sleep(1000);}catch(Exception}}死死classOperatorimplementsRunn
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五版對講門品牌授權(quán)與市場推廣合同2篇
- 教培機構(gòu)2025年度27份合同協(xié)議(教育版權(quán)保護)2篇
- 二零二五版住宅小區(qū)配套設施使用權(quán)轉(zhuǎn)讓合同3篇
- 二零二五年度采砂廠承包生態(tài)補償金支付合同范本3篇
- 2024蔬菜種植項目承包合同協(xié)議2篇
- 二零二五版工程招投標與合同管理專家指導與案例分析3篇
- 工業(yè)廠房結(jié)構(gòu)檢測與2025年度注漿加固合同3篇
- 展會安全保障合同(2篇)
- 二零二五年度餐飲業(yè)食品安全標準制定合同3篇
- 二零二五版鋼結(jié)構(gòu)工程專用材料采購合同范本5篇
- 小學四年級數(shù)學知識點總結(jié)(必備8篇)
- GB/T 893-2017孔用彈性擋圈
- GB/T 11072-1989銻化銦多晶、單晶及切割片
- GB 15831-2006鋼管腳手架扣件
- 醫(yī)學會自律規(guī)范
- 商務溝通第二版第4章書面溝通
- 950項機電安裝施工工藝標準合集(含管線套管、支吊架、風口安裝)
- 微生物學與免疫學-11免疫分子課件
- 《動物遺傳育種學》動物醫(yī)學全套教學課件
- 弱電工程自檢報告
- 民法案例分析教程(第五版)完整版課件全套ppt教學教程最全電子教案
評論
0/150
提交評論