版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
類(lèi)ArrayList能夠使用數(shù)組自定義類(lèi)型并遍能夠使用ArayLst集合的構(gòu)造方法創(chuàng)建AryLstArayLst集合數(shù)據(jù)能夠使用Arayist集合自定義對(duì)象并遍歷ys第1APAicnPgc應(yīng)程序接口。JvaP一程序的 ,是JK提給我們使用的類(lèi)的說(shuō)明文檔。這些類(lèi)將底層的代碼實(shí)現(xiàn)封裝了起來(lái),我們不需要關(guān)心這些類(lèi)是如何實(shí)現(xiàn)的,只需要習(xí)這些類(lèi)如何使用即可。所以我們可以通過(guò)查詢(xún)AP的方式,來(lái)學(xué)習(xí)Jva提供的類(lèi),并得知如何使用它們。API使用步打開(kāi)幫助文檔看類(lèi)的解釋和說(shuō)學(xué)習(xí)構(gòu)造方法使用成員方法第2Scanner2.1什么是Scanner一個(gè)可以解析基本類(lèi)型和字符串的簡(jiǎn)單文本掃描器。例如,以下代碼使用戶(hù)能夠從System.in中一個(gè)數(shù)ScannerscScannersc=newScanner(System.in);inti=sc.nextInt();備注:System.in系統(tǒng)輸入指的是通過(guò)鍵盤(pán)錄2.2類(lèi)型使用步導(dǎo)使用import關(guān)鍵字導(dǎo)包,在類(lèi)的所有代碼之前導(dǎo)包,引入要使用的類(lèi)型,jvalang包下的所有類(lèi)無(wú)需導(dǎo)入。格式:importimport包名.類(lèi)名舉例創(chuàng)建對(duì)使用該類(lèi)的構(gòu)造方法,創(chuàng)建一個(gè)該類(lèi)的對(duì)象。格式數(shù)數(shù)據(jù)類(lèi)型變量名=new數(shù)據(jù)類(lèi)型(參數(shù)列表舉例ScannerScannersc=new調(diào)用方調(diào)用該類(lèi)的成員方法,完成指定功能。格式變變量名.方法名舉例查看
:該類(lèi)需要import:構(gòu)造一個(gè)publicint:將輸入信息的publicint
//1//1.importjava.util.Scanner;publicclassDemo01_Scanner{publicstaticvoidmain(String[]args)//2.創(chuàng)建鍵盤(pán)錄入數(shù)據(jù)Scannersc=new//3.接收數(shù)據(jù)inti=sc.nextInt();//4.輸出數(shù)據(jù)}}求鍵盤(pán)錄入兩個(gè)數(shù)據(jù)并求和,代碼如下importimportjava.util.Scanner;publicclassTest01Scanner{publicstaticvoidmain(String[]args)//創(chuàng)建對(duì)Scannersc=new//接收數(shù)inta=sc.nextInt();intb=sc.nextInt();//對(duì)數(shù)據(jù)進(jìn)行intsum=a+取最importimportjava.util.Scanner;publicclassTest02Scanner{publicstaticvoidmain(String[]args)//創(chuàng)建對(duì)Scannersc=new//接收數(shù)inta=sc.nextInt();intb=sc.nextInt();intc=sc.nextInt();//如何獲取三個(gè)數(shù)據(jù)的最大inttemp=(a>b?a:intmax=(temp>c?temp:System.out.println("max:"+}}概場(chǎng)景非常有限。:沒(méi)有變量名的對(duì)象newnew類(lèi)名(參數(shù)列表舉例newnew應(yīng)用場(chǎng)創(chuàng)建對(duì)象直接調(diào)用方法,沒(méi)有變量名newnewScanner(System.in).nextInt();newScanner(System.in).nextInt();classclassTestpublicstaticvoidmain(String[]args)//普通方Scannersc=newScanner(System.in); 對(duì)象作為方法接收的參input(new}publicstaticvoidinput(Scannersc){}}作為返回classclassTest2publicstaticvoidmain(String[]args)//普通方Scannersc=}publicstaticScanner//普通方//Scannersc=new//return 對(duì)象作為方法返回returnnew}}第3章Random此類(lèi)的實(shí)例用于生成偽隨機(jī)RandomRandomr=newRandom();inti=r.nextInt();查看
:該類(lèi)需要importint值publicintnextInt(int0指定值int值publicintnextInt(int0指定值//1//1.importjava.util.Random;publicclassDemo01_Random{publicstaticvoidmain(String[]args)//2.創(chuàng)建鍵盤(pán)錄Randomr=newfor(inti=0;i<3;//3.隨機(jī)生成一個(gè)intnumber=//4.輸出數(shù)System.out.println("number:"+}}}備注:創(chuàng)建一獲取隨機(jī)
對(duì)象,每次調(diào)
猜數(shù)字小游 導(dǎo)包importjava.util.Random;publicclassTest02Random{publicstaticvoidmain(String[]args)//系統(tǒng)產(chǎn)生一個(gè)隨機(jī)數(shù)1‐100之間的Randomr=newintnumber=r.nextInt(100)+1;//鍵盤(pán)錄入我們要猜的Scannersc=newScanner(System.in);intguessNumber=sc.nextInt();//比較這兩個(gè)數(shù)據(jù)(用if語(yǔ)句)if(guessNumber>number){System.out.println("你猜的數(shù)據(jù)"+guessNumber+"大了}elseif(guessNumber<number)System.out.println("你猜的數(shù)據(jù)"+guessNumber+"小了}else}}}}第4章ArrayList使用學(xué)生數(shù)組,三個(gè)學(xué)生對(duì)象,代碼如下publicclass{privateStringname;privateintage;publicStudent(){}publicStudent(Stringname,int{=name;this.age=age;}publicString{return}publicvoidsetName(String{=}publicint{return}publicvoidsetAge(int{this.age=}}publicclassTest01StudentArraypublicstaticvoidmain(String[]args)//創(chuàng)建學(xué)生數(shù)Student[]students=new//創(chuàng)建學(xué)生對(duì)Students1=newStudent("",40);Students2=newStudent("",35);Students3=newStudent("students[0]=s1;students[1]=s2;students[2]=//遍歷學(xué)生數(shù)for(intx=0;x<students.length;{Students=students[x];}}}
是大小可變的數(shù)組的實(shí)現(xiàn),在內(nèi)的數(shù)據(jù)稱(chēng)為元素。此類(lèi)提供一些方法來(lái)操作內(nèi)的元
查看java.util.ArrayListE:該類(lèi)需要import導(dǎo)入使java.util.ArrayListE,表示一種指定的數(shù)據(jù)類(lèi)型,叫做泛型。E,取自Element(元素)的首字母。在出現(xiàn)用一種數(shù)據(jù)類(lèi)型將其替換即可,表示哪種類(lèi)型的元素。代碼如下:
的地方,我們
在JDK7后,右側(cè)泛型的尖括號(hào)之內(nèi)可以留空,但是<>仍然要寫(xiě)。簡(jiǎn)化格式ArrayListArrayList<String>list=newpublicbooleanadd(Eadd(Epublicbooleanadd(Eadd(E
方法中,只能添publicpublicclass{publicstaticvoidmain(String[]{//ArrayList<String>list=new//Strings1= Strings2= Strings3= //打印學(xué)生ArrayListpublicbooleanadd(E:將指定的元publicbooleanadd(EpublicEremove(intpublicEremove(intpublicEget(int:返回此集合中指定位置publicEget(intpublicpublicclass{publicstaticvoidmain(String[]{//創(chuàng)建集合對(duì)ArrayList<String>list=new// //publicEget(intindex):返回指定索引處的元//publicintsize():返回集合中的元素的//publicEremove(intindex):刪除指定索引處的元素,返回被刪除的元素//遍歷輸for(inti=0;i<i++){}}} 基本基本類(lèi)型包裝
publicpublicclass{publicstaticvoidmain(String[]{ArrayList<Integer>list=newArrayList<Integer>();}數(shù)值添加到集publicpublicclassTest01ArrayListpublicstaticvoidmain(String[]args)//創(chuàng)建RandomRandomrandom=new//創(chuàng)建ArrayListArrayList<Integer>list=new//添加隨機(jī)數(shù)到集for(inti=0;i<6;i++)intr=random.nextInt(33)+對(duì)象添加到集publicpublicclassTest02ArrayListpublicstaticvoidmain(String[]args)//創(chuàng)建集合對(duì)ArrayList<Student>list=new//創(chuàng)建學(xué)生對(duì)Students1=newStudent(" Students2=newStudent(" Students3=newStudent(" Students4=newStudent(" //遍歷集for(intx=0;x<list.size();{Students=list.get(x);}}}打印集合方定義以指定格式打印集合的方法(ArrayList類(lèi)型作為參數(shù)),使用{}擴(kuò)起集合,使用@分隔每個(gè)元素。格式{元@元素@元素}publicpublicclassTest03ArrayListpublicstaticvoidmain(String[]args)//創(chuàng)建集合對(duì)ArrayList<String>list=new//添加字符串到集合 獲取集合方publicpublicclassTest04ArrayListpublicstaticvoidmain(String[]args)//創(chuàng)建RandomRandomrandom=new//創(chuàng)建ArrayListArrayList<Integer>list=new//添加隨機(jī)數(shù)到集for(inti=0;i<20;i++)in
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 用心做教育用愛(ài)做人師-2024-2025學(xué)年第一學(xué)期述職報(bào)告
- 化驗(yàn)員題庫(kù)填空題
- 2025年春節(jié)前安全檢查方案
- 三方服務(wù)合作合同擔(dān)保書(shū)范本版B版
- 2024年金屬結(jié)構(gòu)焊接合同
- 2025年彩鋼活動(dòng)房租賃與物業(yè)管理服務(wù)合同2篇
- 2024救災(zāi)工作紀(jì)錄片拍攝合同協(xié)議樣本
- 2025年度車(chē)輛出借與租后增值服務(wù)一體化合同3篇
- 2024馬鈴薯種植戶(hù)與農(nóng)產(chǎn)品電商平臺(tái)合作銷(xiāo)售協(xié)議3篇
- 2024技術(shù)服務(wù)合同帶眉腳
- DB3502Z 5034-2018 廈門(mén)市保障性住房建設(shè)技術(shù)導(dǎo)則
- 2024年銀行貸款還款計(jì)劃書(shū)范本
- 知不足而奮進(jìn)望遠(yuǎn)山而力行-期中考前動(dòng)員班會(huì) 課件
- 醫(yī)學(xué)教程 常見(jiàn)急救藥品的作用與用途
- 2024-2025學(xué)年二年級(jí)上學(xué)期數(shù)學(xué)期中模擬試卷(蘇教版)(含答案解析)
- 學(xué)生公寓投標(biāo)書(shū)
- 公司解散清算的法律意見(jiàn)書(shū)、債權(quán)處理法律意見(jiàn)書(shū)
- 電子教案-《交往與合作》(第一單元第二課+敲開(kāi)人際關(guān)系的大門(mén))-1
- 中金在線測(cè)評(píng)多少題
- 公路橋梁工程施工安全風(fēng)險(xiǎn)評(píng)估指南
- 2024-2030年全球及中國(guó)通過(guò)硅通孔(TSV)技術(shù)行業(yè)市場(chǎng)現(xiàn)狀供需分析及市場(chǎng)深度研究發(fā)展前景及規(guī)劃可行性分析研究報(bào)告
評(píng)論
0/150
提交評(píng)論