版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、JAVA上機(jī)實(shí)驗(yàn)題答案與解析實(shí)驗(yàn)一 Java程序編程.編寫一個(gè)Java應(yīng)用程序,輸出內(nèi)容為Hello!。注:文件位置位 于 e:2:Hello.java編譯:(1)e:(2)cd 2 (3)javacHello.java(4)java Hello.編寫一個(gè)Java小應(yīng)用程序,輸出內(nèi)容為我一邊聽音樂,一邊學(xué) Java。第一步編寫import java.awt.*;import java.applet.*;public class MyApplet extends Appletpublic void paint(Graphics g)g.drawString(我一邊聽音樂,我一邊做 java,25
2、,25);第二步 在 DO掰境中編譯(.javac MyApplet.java )第三步使用記事本編寫第四步將記事本文件名命名為MyApplet.html第五步打開MyApplet.html實(shí)驗(yàn)二類的定義1.編寫Java應(yīng)用程序,自定義Point類,類中有兩個(gè)描述坐標(biāo)位置的 double變量x,y, 同用構(gòu)造方法,實(shí)現(xiàn)對Point對象p1,p2初始化,p1和p2對應(yīng)坐標(biāo)分別為(15,20) , (10,30) ;定義方法getX(),getY() 分別獲得點(diǎn)的橫坐標(biāo)和縱坐標(biāo);定義方法setX(),setY() 分別獲得點(diǎn)的橫坐標(biāo)和縱坐標(biāo);并且把p1 和 p2 輸出;public class P
3、oint double x,y;Point(double x,double y)this.x=x;this.y=y;double getX()return x;double getY()return y;void setX(double x)this.x=x;void setY(double y)this.y=y;public static void main(String args) Point p1=new Point(15,20);/ 初始化Point p2=new Point(10,30);運(yùn)行結(jié)果:橫坐標(biāo)為15.0縱坐標(biāo)為20.0橫坐標(biāo)為10.0縱坐標(biāo)為 30.02.編寫Java應(yīng)用
4、程序,自定義Circle類,類中有兩個(gè)double變量r,s, 一個(gè)類變量pi, 利用構(gòu)造方法實(shí)現(xiàn)對半徑是 3和5.5的初始化,自定義getArea方法實(shí)現(xiàn)圓面積求解;public class Circle double s,r;public Circle(double r)this.r=r;double get Area()this.s=pi*r*r;return s;public static void main(String口 args) Circle c1=new Circle(3);Circle c2=new Circle(5.5);Area ();Area();實(shí)驗(yàn)三類的繼承和多態(tài)
5、性.(1)編寫一個(gè)接口 ShapePara,要求:接口中的方法:int getArea():獲得圖形的面積。int getCircumference() :獲得圖形的周長2) 編寫一個(gè)圓類Circle ,要求:圓類Circle 實(shí)現(xiàn)接口ShapePara。該類包含有成員變量:radius:public 修飾的 double 類型 radius, 表示圓的半徑。x : private 修飾的 double 型變量 x ,表示圓心的橫坐標(biāo)。y : protected 修飾的 double 型變量y ,表示圓心的縱坐標(biāo)。包含的方法有:Circle(double radius) 有參構(gòu)造方法。 以形參
6、表中的參數(shù)初始化半徑, 圓心為坐標(biāo)原點(diǎn)。double getRadius() :獲取半徑為方法的返回值。 void setCenter(double x, double y) :利用形參表中的參數(shù)設(shè)置類Circle 的圓心坐標(biāo)。 void setRadius(double radius) :利用形參表中的參數(shù)設(shè)置類Circle 的 radius 域。在主方法中產(chǎn)生半徑為 5 的圓。interface ShapePara double getArea(double r);double getCircumference(double r);/ 注: Circle 是在接口中建立的 calss ,即
7、先建立接口,在建立接口的類class Circle implements ShapeParaprivate double x;protected double y;public double r;Circle(double r)this.r=r;void setRadius(double r)this.r=r;double getRadius()return r;double getArea()return (3.14*r*r);double getCircumference()return 3.14*2*r;void setCenter(double x,double y)this.x=x;
8、this.y=y;double getCenterx()return x;double getCentery()return y;public class A public static void main(String args) Circle ci=new Circle(5);ci.setRadius(5);ci.setCenter(0, 0); 答案: 78.50.00.0.定義圖形類Shape,該類中有獲得面積的方法 getArea();定義長方形類Rect,該類是Shape 的子類,類中有矩形長和寬的變量double a,double b ,設(shè)置長和寬的方法setWidth() 、
9、setHeight(), 使用 getArea() 求矩形面積;利用 getArea 方法實(shí)現(xiàn)題 1 中圓 面積的求解。class Shape double getArea(double r)return 0;public class Rect extends Shape double a,b ,area;Rect(double width,double heigh)a=width;b=height;void setWidth(double width) a=width;void setHeight(double height) b=height;double getWidth()return
10、 a;double getHeight()return b;double getArea()area= a*b;return area;public class A public static void main(String args) Rect rect=new Rect();double w=12.76,h=25.28;rect.setWidth(w);rect.setHeight(h);答案:圓的的面積: 78.5矩形對象的寬: 12.76 高: 25.28. 編寫 Java 應(yīng)用程序, 定義 Animal 類, 此類中有動物的屬性: 名稱 name, 腿的數(shù)量 legs ,統(tǒng)計(jì)動物的
11、數(shù)量count; 方法:設(shè)置動物腿數(shù)量的方法void setLegs(), 獲得腿數(shù)量的方法 getLegs(), 設(shè)置動物名稱的方法setKind(), 獲得動物名稱的方法getKind(), 獲得動物數(shù)量的方法getCount() 。定義 Fish 類,是 Animal 類的子類,統(tǒng)計(jì)魚的數(shù)量 count, 獲得魚數(shù)量的方法getCount() 。 定義 Tiger 類, 是 Animal 類的子類, 統(tǒng)計(jì)老虎的數(shù)量count,獲得老虎數(shù)量的方法getCount() 。定義 SouthEastTiger 類,是 Tiger 類的子類,統(tǒng)計(jì)老虎的數(shù)量 count, 獲得老虎數(shù)量的方法getC
12、ount() 。public class Animal String name;int legs;static int count;Animal()count+;void setLegs(int legs)this.legs=legs;int getLegs()return legs;void setKind(String name)=name;String getKind()return name;int getCount()return count;public class Fish extends Animalstatic int countFish;Fish()cou
13、ntFish+;int getCount()return countFish;public class Tiger extends Animalstatic int countTiger;Tiger()countTiger+;int getCount()return countTiger;public class SouthEastTiger extends Tigerpublic class A public static void main(String args)Fish f=new Fish();Tiger t=new Tiger();SouthEastTiger st=new Sou
14、thEastTiger();實(shí)驗(yàn)四 異常處理1. 建立 exception 包 , 編寫 TestException.java 程序,主方法中有以下代碼,確定其中可能出現(xiàn)的異常,進(jìn)行捕獲處理。for(inti=0;i4;i+)intk;switch(i)case0:intzero=0;k=911/zero;break;case1:intb=null;k=b0;break;case2:int c=new int2;k=c9;break;case3:charch=abc.charAt(99);break;package Exception;public class TestException pu
15、blic static void main(String args)for(int i=0;iba) throw new InsufficientFundsException(取款余額不足 );else if(dAmount0) throw new NagativeFundsException(取款為負(fù)數(shù));elsepackage Exception;import java.util.*;public class Apublic static void main(String args )Bank b=new Bank(100);Scanner sc=new Scanner(System.in
16、);try b.withDrawal(sc.nextInt();catch(InsufficientFundsException e)catch(NagativeFundsException e)運(yùn)行結(jié)果:請輸入一個(gè)數(shù)80銀行里還剩余: 20.0實(shí)驗(yàn)五 輸入輸出編寫 TextRw.java 的 Java 應(yīng)用程序,程序完成的功能是:首先向 TextRw.txt 中寫入自 己的學(xué)號和姓名,讀取TextRw.txt 中信息并將其顯示在屏幕上。import java.io.*;public class TextRw public static void main(String args) throw
17、s IOException File f=new File(f:TextRw.txt);FileWriter fw=new FileWriter(f);fw.write( 學(xué)號 姓名 );fw.close();FileReader fr=new FileReader(f);int i;while(i=fr.read()!=-1)fr.close();編寫 IoDemo.java 的 Java 應(yīng)用程序,程序完成的功能是:首先讀取IoDemo.java 源程序文件,再通過鍵盤輸入文件的名稱為 iodemo.txt, 把 IoDemo.java 的源程序存入編寫 BinIoDemo.java 的
18、Java 應(yīng)用程序,程序完成的功能是:完成1.doc 文件的復(fù)制,復(fù)制以后的文件的名稱為自己的學(xué)號姓名 .doc 。import java.io.*;public class BinIoDemopublic static void main(String args) throws IOExceptionFile f1=new File(e:1.doc);FileInputStream in=new FileInputStream(f1);“學(xué)號”+“姓名”.doc);FileOutputStream out=new FileOutputStream(f2);byte buf = new byt
19、e2048;int num = in.read(buf);while (num != (-1) out.write(buf, 0, num);out.flush();num = in.read(buf);in.close();out.close();實(shí)驗(yàn)六 多線程編程隨便選擇兩個(gè)城市作為預(yù)選旅游目標(biāo)。實(shí)現(xiàn)兩個(gè)獨(dú)立的線程分別顯示10 次城市名,每次顯示后休眠一段隨機(jī)時(shí)間 (1000ms 以內(nèi) ) , 哪個(gè)先顯示完畢, 就決定去哪個(gè)城市。 分別用Runnable 接口和 Thread 類實(shí)現(xiàn)。通過 Thread public class Hw1Thread extends ThreadString
20、 a;private int sleepTime;public Hw1Thread(String a)super(a);this.a=a;sleepTime=(int)(Math.random()*6000);public void run()int count1=0,count2=0;if(Thread.currentThread().getName().equalsIgnoreCase(ShangHai)for(int i=0;icount2 & count1=10)/ 判斷哪個(gè)城市的輸出次數(shù)先達(dá)到10,達(dá)到則終止輸出else if(count2count1 & count2=10)cat
21、ch(InterruptedException exception);/ 使用 sleep 方法需要拋出中斷異常if(Thread.currentThread().getName().equalsIgnoreCase(BeiJIng)for(int i=0;icount2 & count1=10)else if(count2count1 & count2=10)catch(InterruptedException exception);/ 使用 sleep 方法需要拋出中斷異常 (也可以在方法頭拋出( throw )異常)public class Hw1ThreadText public st
22、atic void main(String args) throws InterruptedException Hw1Thread td1=new Hw1Thread(ShangHai);Hw1Thread td2=new Hw1Thread(BeiJing);td1.start();td2.start();通過 Runnable 接口:public class Hw1Thread implements RunnableString a;private int sleepTime;int count1=0,count2=0;public Hw1Thread(String a)this.a=a;
23、sleepTime=(int)(Math.random()*1000);public void run() / 重寫 run 方法if(Thread.currentThread().getName().equalsIgnoreCase(td1)for(int i=0;icount2 & count1=10)else if(count2count1 & count2=10)if(Thread.currentThread().getName().equalsIgnoreCase(td2)for(int i=0;icount2 & count1=10)/ 判斷哪個(gè)城市的輸出次數(shù)先達(dá)到10,達(dá)到則終止
24、輸出else if(count2count1 & count2=10)catch(InterruptedException exception);/ 使用 sleep 方法需要拋出中斷異常public class Hw1ThreadText public static void main(String args) throws InterruptedException Hw1Thread td1=new Hw1Thread(ShangHai);Hw1Thread td2=new Hw1Thread(BeiJing);new Thread(td1,td1).start();new Thread(td2,td2).start();用繼承 Thread 類方法實(shí)現(xiàn)多線程程序。有兩個(gè)學(xué)生小明和小紅,小明準(zhǔn)備睡 10 分鐘以后開始聽課,小紅準(zhǔn)備睡 1 小時(shí)以后開始聽課,雷老師大喊三
溫馨提示
- 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)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度洗浴中心特色服務(wù)項(xiàng)目開發(fā)與運(yùn)營合同4篇
- 2025年度智能制造車間承包運(yùn)營管理合同協(xié)議書2篇
- 2024版物聯(lián)網(wǎng)技術(shù)開發(fā)合同
- 2025年度櫥柜與廚房設(shè)施安裝服務(wù)合同包含后期維護(hù)保障3篇
- 2024遠(yuǎn)洋漁業(yè)運(yùn)輸合作協(xié)議
- 2025年工業(yè)廠房出租安全生產(chǎn)監(jiān)督協(xié)議書模板3篇
- 2025年度文化產(chǎn)品代理合同終止協(xié)議范本4篇
- 2025年度住宅小區(qū)車位租賃糾紛調(diào)解服務(wù)合同4篇
- 2025年度新能源汽車充電設(shè)施建設(shè)合作合同4篇
- 2025年度生物制藥研發(fā)項(xiàng)目出資入股分紅協(xié)議書3篇
- 國家自然科學(xué)基金項(xiàng)目申請書
- 電力電纜故障分析報(bào)告
- 中國電信網(wǎng)絡(luò)資源管理系統(tǒng)介紹
- 2024年浙江首考高考選考技術(shù)試卷試題真題(答案詳解)
- 《品牌形象設(shè)計(jì)》課件
- 倉庫管理基礎(chǔ)知識培訓(xùn)課件1
- 藥品的收貨與驗(yàn)收培訓(xùn)課件
- GH-T 1388-2022 脫水大蒜標(biāo)準(zhǔn)規(guī)范
- 高中英語人教版必修第一二冊語境記單詞清單
- 政府機(jī)關(guān)保潔服務(wù)投標(biāo)方案(技術(shù)方案)
- HIV感染者合并慢性腎病的治療指南
評論
0/150
提交評論