版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
圖上的一鍵優(yōu)化與清除同時在運行,在一個進(jìn)程中同時在執(zhí)行了多個任務(wù)。CPU開銷。線程的使用會給系統(tǒng)帶來上下文切換的額外負(fù)問題:先按照順序運行完了然后接著再按照順序運行完,我們想要的效果是runrun問題:先按照順序運行完了然后接著再按照順序運行完,我們想要的效果是run()JVN不會當(dāng)作線程來運行,會認(rèn)為是普通的方Thread類的對象并啟動該線程,但是如果沒有重寫run(),什么也不線程池中,變得可運行,等待獲取cpu的執(zhí)行權(quán)。阻塞:CPU使用權(quán),暫時停止運行。直到線程進(jìn)入就緒Thread(Stringname) setName(Stringname) 默認(rèn)線程的優(yōu)先級是5setPriority(intnewPriority)設(shè)置線程的優(yōu)先級 現(xiàn)取決于底層的操作系統(tǒng)的實現(xiàn)(最大的優(yōu)先級是10,最小的1,默認(rèn)是5 sleep(int classThreadDemo1extends{public}publicThreadDemo1(Stringnamesuper(name}publicvoidrun(){inti=0;while(i<30){System.out.println(this.getName()+""+":i="+i);System.out.println(Thread.currentThread().getName()+""+":i="+System.out.println(Thread.currentThread()==this);System.out.println("getId()"+""+":id="+super.getId()System.out.println("getPriority()"+""+":Priority=+super.getPriority()}}}class{publicstaticvoidmain(String[]{ThreadDemo1th1newThreadDemo1("線程1");ThreadDemo1th2newThreadDemo1("線程th1.setName("th1"th2.setName("th2"設(shè)置線程優(yōu)先級1~th1.setPriority(10th2.setPriority(7System.out.println("max:"+Thread.MAX_PRIORITY);System.out.println("min:"+Thread.MIN_PRIORITY);System.out.println("nor:"+Thread.NORM_PRIORITY); o}}都了屬于自己的tickets屬性,那么就總共存在了四份。解決方案一:tickets使用staitc修飾,使每個線程對象都是共份屬性Runnablerun方法packagepackagepublicclassDemo1publicstaticvoidmain(String[]args){MyRunmy=newMyRun();Threadt1=newThread(my);for(inti=0;i<200;i++){System.out.println("main:"+i);}}}classMyRunimplementsRunnablepublicvoidrun()for(inti=0;i<200;i++){System.err.println("MyRun:"+i);}}}執(zhí)行的代碼.RunnableThread的構(gòu)造時,實際上就是讓給Threadrun方法,Thread一項任務(wù).Thread.slee(100classclassMyTicketimplementsRunnableinttickets=publicvoidrun()while(true)if(tickets>0)try}catch(InterruptedExceptione){}System.out.println(Thread.currentThread().getName()tickets號票");}else}}}}publicclassDemo6publicstaticvoidmain(String[]args){MyTicketmt=newMyTicket();Threadt1=newThread(mt);Threadt2=newThread(mt);Threadt3=newThread(mt);Threadt4=newThread(mt);}}每個java對象都有一個鎖對象.而且只有一把類名對象(52T1L1T2L2T1L2T2publicclassDeadLockpublicstaticvoidmain(String[]args)newThread(newRunnable(創(chuàng)建線程publicvoidrun()synchronized("刀叉"){ 你不給我筷子我就不給你刀叉try}catch(InterruptedExceptione){}synchronized("筷子.getName(給你刀叉}}}}, newThread(newRunnable( publicvoidrun()synchronized("筷子"){ 你先給我刀叉我再給你筷子try}catch(InterruptedExceptione){}synchronized("刀叉.getName()+":好吧,把筷子給你}}} 人}}whilenotifyAll喚醒,notify容易出現(xiàn)只喚醒本方線程情況,導(dǎo)致程序中的所有線程都在等待。,publicpublicclassDemo10publicstaticvoidmain(String[]args){p=new Producerpro=newProducer(p);Consumercon=newConsumer(p);Threadt1newThread(pro生產(chǎn)者");Threadt2newThread(con消費者");}} {StringString}classProducerimplementsRunnable{publicProducer()}publicthis.p=}p)publicvoidrun(){inti=0;while(true){if(i%2==publicvoidrun(){inti=0;while(true){if(i%2==0)="jack";p.gender="man";}= p.gender女}}}classConsumerimplementsRunnable{publicConsumer()}publicthis.p=}p)publicvoidrun()while(true)System.out.println("name:"++"---gnder:"}}}Producer和Consumer對象所以Producer和Consumer的是同一個 顯然屏幕輸出了man這樣的結(jié)果是出現(xiàn)了線程安全問題。所以需要使用packagepackagepublicclassDemo10publicstaticvoidmain(String[]args){p=new Producerpro=newProducer(p);Consumercon=newConsumer(p);Threadt1newThread(pro生產(chǎn)者");Threadt2newThread(con消費者");}} {StringString}classProducerimplementsRunnable{publicProducer()}public p)this.p=}publicvoidrun(){inti=0;while(true){synchronized(p)if(i%2==0)="jack";p.gender="man";}= p.gender女}}}}classConsumerimplementsRunnable{publicConsumer()}public p)this.p=}publicvoidrun()while(true)synchronized(p)System.out.println("name:"++"---gnder:"}}}}jack女或者manpublicpublicclassDemo10publicstaticvoidmain(String[]args){p=new Producerpro=newProducer(p);Consumercon=newConsumer(p);Threadt1newThread(pro生產(chǎn)者");Threadt2newThread(con消費者");}} {StringStringpublicsynchronizedvoidset(Stringname,Stringgender)=this.gender=}publicsynchronizedvoidread(){System.out.println("name:"++"----gender:"+}}classProducerimplementsRunnable{publicProducer()}public p)this.p=}publicvoidrun(){inti=0;while(true){if(i%2==0)p.set("jack",}else 女}}}classConsumerimplementsRunnable{publicConsumer()}publicpublicthis.p=}p)publicvoidrun()while(true){}}}有獲得執(zhí)行權(quán),并持有了相同的監(jiān)視器(鎖)并調(diào)用notify為止。notify:喚醒持有同一個監(jiān)視器(鎖)wait的第一個線程,例如,餐館有空位置packagepackagepublicclassDemo10publicstaticvoidmain(String[]args){p=new Producerpro=newConsumercon=newThreadt1newThread(pro生產(chǎn)者");Threadt2newThread(con消費者");}}//使 Stringname;Stringgender;booleanflag=publicsynchronizedvoidset(Stringname,Stringgender)if(flag)try}catch(InterruptedExceptione)}}=name;this.gender=gender;flag=true;}publicsynchronizedvoidread()if(!flag)try}catch(InterruptedExceptione)}}System.out.println("name:"++"----gender:"flag=false;}}classProducerimplementsRunnable{publicProducer()}public p)this.p=}publicvoidrun(){inti=0;while(true){if(i%2==0)p.set("jack",}else 女}}}classConsumerimplementsRunnable{publicConsumer()}public p)this.p=}publicpublicvoidrun()while(true){}}}waitnotif(,Object類中waitsleep()2.正常終止當(dāng)線程的run()執(zhí)行完畢,線程注意:Stop方法已過時,就不能再使用這個方法。run方法結(jié)束,classclassStopThreadimplementsRunnable{publicbooleantag=true;publicvoidrun()inti=while(tag)"i:"+}}}publicclassDemo8publicstaticvoidmain(String[argsStopThreadst=newStopThread();Threadth=newThread(st,"線程1");for(inti=0;i<100;i++)if(i==50){System.out.println("maini:"+i);st.tag=false;}}}}3.線setDaemon(boolean必須在啟動線程之前(start方法之前)setDaemon(true)方法,才可以把main()執(zhí)行完畢,那么程序就會終止,JVM也就退出了。該案例:開啟了一個qq檢測升級的線程,通過while真循環(huán)進(jìn)行不停檢測,當(dāng)計數(shù)100的時候,表示檢測完畢,提示是否更新,線程同時結(jié)束。classQQUpdateimplementsRunnableinti=classQQUpdateimplementsRunnableinti=publicvoidrun()while(true)System.out.println(Thread.currentThread().getName()+try}catch(InterruptedExceptione)}if(i==10
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年度租賃合同終止與租賃物處理及收益分配協(xié)議3篇
- 二零二五年度城市綜合體衛(wèi)生間清潔及品牌形象塑造協(xié)議2篇
- 西安理工大學(xué)高科學(xué)院《影視音樂基礎(chǔ)》2023-2024學(xué)年第一學(xué)期期末試卷
- 2024汽車烤漆房租賃合同及環(huán)保設(shè)施租賃與維護(hù)協(xié)議3篇
- 2025年度智慧城市基礎(chǔ)設(shè)施建設(shè)合同6篇
- 2024版新能源發(fā)電項目投資與建設(shè)合同
- 二零二五年度板材研發(fā)與生產(chǎn)技術(shù)轉(zhuǎn)移合同2篇
- 二零二五年度大理石礦山開采與環(huán)保治理綜合服務(wù)合同3篇
- 二零二五年物聯(lián)網(wǎng)設(shè)備集成技術(shù)服務(wù)協(xié)議
- 天津外國語大學(xué)濱海外事學(xué)院《物理化學(xué)實驗Ⅱ》2023-2024學(xué)年第一學(xué)期期末試卷
- 2024年全國職業(yè)院校技能大賽高職組(智能節(jié)水系統(tǒng)設(shè)計與安裝賽項)考試題庫-上(單選題)
- 鷓鴣山隧道瓦斯地段專項施工方案
- HG∕T 2058.1-2016 搪玻璃溫度計套
- 九宮數(shù)獨200題(附答案全)
- 泌尿科一科一品匯報課件
- 白銅錫電鍍工藝
- 拜耳法氧化鋁生產(chǎn)工藝
- 2024年南京信息職業(yè)技術(shù)學(xué)院高職單招(英語/數(shù)學(xué)/語文)筆試歷年參考題庫含答案解析
- 部編版二年級下冊道德與法治第二單元《我們好好玩》全部教案
- 幼兒園利劍護(hù)蕾專項行動工作方案總結(jié)與展望
- 合同信息管理方案模板范文
評論
0/150
提交評論