欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    JAVA编程思想课后习题答案-.pdf

    • 资源ID:76246943       资源大小:11.41KB        全文页数:10页
    • 资源格式: PDF        下载积分:20金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要20金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    JAVA编程思想课后习题答案-.pdf

    Java编程思想(第四版)习题答案第二章练习 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);练习 2:public class HelloWorld public static void main(String args)System.out.println(Hello World!);练习 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();练习 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();练习 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();练习 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);练习 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);练习 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);练习 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);练习 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);练习 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;练习 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();练习 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);练习 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);练习 15:public class HelloDocTest public static void main(String args)System.out.println(Hello World!);练习 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);t.info();t.info(overloading method);/Overloaded constructor:new Tree();第三章练习 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.);练习 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);练习 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);练习 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=V elocityCalculator.velocity(d,t);System.out.println(V elocity:+v);练习 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();练习 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);public class DogCompare 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();Dog butch=new Dog();butch.setName(Butch);butch.setSays(Hello!);butch.showName();butch.speak();P.rintln(Comparison:);P.rintln(spot=butch:+(spot=butch);P.rintln(spot.equals(butch):+spot.equals(butch);P.rintln(butch.equals(spot):+butch.equals(spot);P.rintln(Now assign:spot=butch);spot=butch;P.rintln(Compare again:);P.rintln(spot=butch:+(spot=butch);P.rintln(spot.equals(butch):+spot.equals(butch);P.rintln(butch.equals(spot):+butch.equals(spot);P.rintln(Spot:);spot.showName();spot.speak();P.rintln(Butch:);butch.showName();butch.speak();练习 7:

    注意事项

    本文(JAVA编程思想课后习题答案-.pdf)为本站会员(索****)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开