




已閱讀5頁,還剩5頁未讀, 繼續(xù)免費(fèi)閱讀
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
Java編程思想(第四版)習(xí)題答案第二章練習(xí)1:public class PrimitiveTest static int i;static char c;public static void main(String args) System.out.println(int = + i);System.out.println(char = + c);練習(xí)2:public class HelloWorld public static void main(String args) System.out.println(Hello World!);練習(xí)3:public class ATNTest public static void main(String args) class ATypeName int i;double d;boolean b;void show() System.out.println(i);System.out.println(d);System.out.println(b);ATypeName a = new ATypeName();a.i = 3;a.d = 2.71828;a.b = false;a.show();練習(xí)4:public class DataOnlyTest public static void main(String args) class DataOnly int i;double d;boolean b;void show() System.out.println(i);System.out.println(d);System.out.println(b);DataOnly data = new DataOnly();data.i = 3;data.d = 2.71828;data.b = false;data.show();練習(xí)5:public class DOTest2 public static void main(String args) class DataOnly int i;double d;boolean b;void show() System.out.println(i);System.out.println(d);System.out.println(b);DataOnly data = new DataOnly();data.i = 234;data.d = 2.1234545;data.b = true;data.show();練習(xí)6:public class StorageTest public static void main(String args) class StoreStuff int storage(String s) return s.length() * 2;StoreStuff x = new StoreStuff();System.out.println(x.storage(hi);練習(xí)7:class StaticTest static int i = 47;class Incrementable static void increment() StaticTest.i+; public class ITest public static void main(String args) System.out.println(StaticTest.i= + StaticTest.i);StaticTest st1 = new StaticTest();StaticTest st2 = new StaticTest();System.out.println(st1.i= + st1.i);System.out.println(st2.i= + st2.i);Incrementable sf = new Incrementable();sf.increment();System.out.println(After sf.increment() called: );System.out.println(st1.i = + st1.i);System.out.println(st2.i = + st2.i);Incrementable.increment();System.out.println(After Incrementable.increment called: );System.out.println(st1.i = + st1.i);System.out.println(st2.i = + st2.i);練習(xí)8:class StaticTest static int i = 47;class Incrementable static void increment() StaticTest.i+; public class OneStaticTest public static void main(String args) System.out.println(StaticTest.i= + StaticTest.i);StaticTest st1 = new StaticTest();StaticTest st2 = new StaticTest();System.out.println(st1.i= + st1.i);System.out.println(st2.i= + st2.i);Incrementable.increment();System.out.println(After Incrementable.increment() called: );System.out.println(st1.i = + st1.i);System.out.println(st2.i = + st2.i);Incrementable.increment();System.out.println(After Incrementable.increment called: );System.out.println(st1.i = + st1.i);System.out.println(st2.i = + st2.i);st1.i = 3;System.out.println(After st1.i = 3, );System.out.println(st1.i = + st1.i);System.out.println(st2.i = + st2.i);System.out.println(Create another StaticTest, st3.);StaticTest st3 = new StaticTest();System.out.println(st3.i = + st3.i);練習(xí)9:public class AutoboxTest public static void main(String args) boolean b = false;char c = x;byte t = 8;short s = 16;int i = 32;long l = 64;float f = 0.32f;double d = 0.64;Boolean B = b;System.out.println(boolean b = + b); System.out.println(Boolean B = + B); Character C = c;System.out.println(char c = + c);System.out.println(Character C = + C);Byte T = t;System.out.println(byte t = + t);System.out.println(Byte T = + T);Short S = s;System.out.println(short s = + s);System.out.println(Short S = + S);Integer I = i;System.out.println(int i = + i);System.out.println(Integer I = + I);Long L = l;System.out.println(long l = + l);System.out.println(Long L = + L);Float F = f;System.out.println(float f = + f);System.out.println(Float F = + F);Double D = d;System.out.println(double d = + d);System.out.println(Double D = + D);練習(xí)10:public class CommandArgTest public static void main(String args) System.out.println(args0 = + args0);System.out.println(args1 = + args1);System.out.println(args2 = + args2);練習(xí)11:public class Rainbow public static void main(String args) AllTheColorsOfTheRainbow atc = new AllTheColorsOfTheRainbow();System.out.println(atc.anIntegerRepresentingColors = + atc.anIntegerRepresentingColors);atc.changeColor(7);atc.changeTheHueOfTheColor(77);System.out.println(After color change, atc.anIntegerRepresentingColors = + atc.anIntegerRepresentingColors);System.out.println(atc.hue = + atc.hue);class AllTheColorsOfTheRainbow int anIntegerRepresentingColors = 0;int hue = 0;void changeTheHueOfTheColor(int newHue) hue = newHue;int changeColor(int newColor) return anIntegerRepresentingColors = newColor;練習(xí)12:public class DocTest /* Entry poing to class & application.* param args array of string arguments* throws exceptions No exceptions thrown*/public static void main(String args) System.out.println(Hello, its: );System.out.println(new Date();練習(xí)13-1:public class Documentation1 /* A field comment */public int i;/* A method comment */public void f() 2:public class Documentation2 Date d = new Date();void showDate() System.out.println(Date = + d);3:public class Documentation3 public static void main(String args) Date d = new Date();System.out.println(d = + d);練習(xí)14:public class Documentation4 public int i = 2;private int j = 3;public static void main(String args) Date d = new Date();System.out.println(d = + d);練習(xí)15:public class HelloDocTest public static void main(String args) System.out.println(Hello World!);練習(xí)16:class Tree int height;Tree() System.out.println(Planting a seedling);height = 0;Tree(int initialHeight) height = initialHeight;System.out.println(Creating new tree that is + height + feet tall);void info() System.out.println(Tree is + height + feet tall);void info(String s) System.out.println(s + : Tree is + height + feet tall);public class Overloading public static void main(String args) for(int i = 0; i 5; i+) Tree t = new Tree(i);();(overloading method);/ Overloaded constructor:new Tree();第三章練習(xí)1:public class PrintTest public static void main(String args) print(Hello, from short form.);P.rintln(Hello from greggordon form.);System.out.println(Hello from long form.);練習(xí)2:class Tube float level;public class Assign public static void main(String args) Tube t1 = new Tube();Tube t2 = new Tube();t1.level = 0.9f;t2.level = 0.47f;P.rintln(1: t1.level: + t1.level + , t2.level: + t2.level);t1 = t2;P.rintln(2: t1.level: + t1.level + , t2.level: + t2.level);t1.level = 0.27f; P.rintln(3: t1.level: + t1.level + , t2.level: + t2.level);練習(xí)3:class Box float a;public class PassObject2 static void f(Box y) y.a = 2.71828f;public static void main(String args) Box x = new Box();x.a = 3.1416f;print(1: x.a = + x.a);f(x);print(2: x.a = + x.a);練習(xí)4:class VelocityCalculator static float velocity (float d, float t) if(t = 0) return 0f;else return d/t; public class VelocityTester public static void main(String args) float d = 565.3f;float t = 3.6f;System.out.println(Distance: + d);System.out.println(Time: + t);float v = VelocityCalculator.velocity(d, t);System.out.println(Velocity: + v);練習(xí)5:class Dog String name;String says;void setName(String n) name = n;void setSays(String s) says = s;void showName() P.rintln(name);void speak() P.rintln(says);public class DogTest public static void main(String args) Dog spot = new Dog();spot.setName(Spot);spot.setSays(Ruff!);Dog scruffy = new Dog();scruffy.setName(Scruffy);scruffy.setSays(Wurf!);spot.showName();spot.speak();scruffy.showName(); scruffy.speak();練習(xí)6:class Dog String name;String says;void setName(String n) name = n;void setSays(String s) says = s;void showName() P.rintln(name);void speak() P.rintln(says);p
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年護(hù)色劑合作協(xié)議書
- 2025年高可靠性感應(yīng)式電度表合作協(xié)議書
- 農(nóng)業(yè)種植養(yǎng)殖業(yè)綠色發(fā)展合作協(xié)議
- 咖啡廳營業(yè)資金收支管理協(xié)議
- 2025年醫(yī)用超聲儀器合作協(xié)議書
- 企業(yè)跨地區(qū)供應(yīng)鏈協(xié)議
- 游戲外掛開發(fā)者禁止合作協(xié)議
- 2025年提供施工設(shè)備服務(wù)合作協(xié)議書
- 食品加工業(yè)衛(wèi)生安全證明(6篇)
- 2025年行政管理學(xué)卷分析與試題
- 安徽省1號(hào)卷A10聯(lián)盟2025屆高三5月最后一卷生物試題及答案
- 網(wǎng)絡(luò)安全等級(jí)保護(hù)備案表(2025版)
- 共情研究的歷史發(fā)展及其當(dāng)前狀況分析
- 《綠色建筑評(píng)價(jià)》課件 - 邁向可持續(xù)建筑的未來
- 2025年湖南九年級(jí)物理(BEST湘西州聯(lián)考)(含答案)
- 山東省臨沂市2025年普通高等學(xué)校招生全國統(tǒng)一考試(模擬)語文及答案(臨沂二模)
- 以患者為中心的醫(yī)教融合模式在提升醫(yī)療服務(wù)質(zhì)量中的應(yīng)用研究
- 制氫技術(shù)與工藝課件:液氫
- (2025)全國小學(xué)生“學(xué)憲法、講憲法”活動(dòng)知識(shí)競(jìng)賽題庫及答案
- NB/T 11643-2024煤炭快速定量裝車系統(tǒng)通用技術(shù)標(biāo)準(zhǔn)
- 2025年電子信息工程專業(yè)考試卷及答案
評(píng)論
0/150
提交評(píng)論