java编程思想第四版第十四章 类型信息习题

  1. fda
  2. dfa
  3. 第三题u
    package net.mindview.typeinfo.test4;import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;abstract class Shape {void draw(){/** 重点在这里: * this指代的是实例对象,由于使用+连接字符串, 会自动调用对象的toString()方法.*/System.out.println(this + ".draw()");}public abstract String toString();
    }class Circle extends Shape{@Overridepublic String toString() {return "Circle";}
    }class Square extends Shape{@Overridepublic String toString() {return "Square";}
    }class Triangle extends Shape{@Overridepublic String toString() {return "Triangle";}
    }//菱形
    class Rhomboid extends Shape{@Overridepublic String toString() {return "Rhomboid";}
    }public class Shapes {public static void main(String[] args) {List<Shape> shapes = new ArrayList<Shape>(Arrays.asList(new Circle(), new Square(), new Triangle(), new Rhomboid()));for(Shape shape:shapes){shape.draw();}for(int i=0;i<shapes.size(); i++){Shape shape = shapes.get(i);if(i == 3){Rhomboid r = (Rhomboid)shape;Circle c = (Circle)shape;}}}}

    运行结果:

    Circle.draw()
    Square.draw()
    Exception in thread "main" Triangle.draw()
    Rhomboid.draw()
    java.lang.ClassCastException: net.mindview.typeinfo.test4.Rhomboid cannot be cast to net.mindview.typeinfo.test4.Circleat net.mindview.typeinfo.test4.Shapes.main(Shapes.java:63)

    不可以向下转型到Circle

  4. 第四题

    package net.mindview.typeinfo.test4;import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;abstract class Shape {void draw(){/** 重点在这里: * this指代的是实例对象,由于使用+连接字符串, 会自动调用对象的toString()方法.*/System.out.println(this + ".draw()");}public abstract String toString();
    }class Circle extends Shape{@Overridepublic String toString() {return "Circle";}
    }class Square extends Shape{@Overridepublic String toString() {return "Square";}
    }class Triangle extends Shape{@Overridepublic String toString() {return "Triangle";}
    }//菱形
    class Rhomboid extends Shape{@Overridepublic String toString() {return "Rhomboid";}
    }public class Shapes {public static void main(String[] args) {List<Shape> shapes = new ArrayList<Shape>(Arrays.asList(new Circle(), new Square(), new Triangle(), new Rhomboid()));for(Shape shape:shapes){shape.draw();}for(int i=0;i<shapes.size(); i++){Shape shape = shapes.get(i);if(i == 3){//添加instanceof判断if (shape instanceof Rhomboid){Rhomboid r = (Rhomboid)shape;}if(shape instanceof Circle){Circle c = (Circle)shape;}}}}}

     

    使用Class.newInstance方法,必须有一个无参构造方法

  5. 第五题:
    package net.mindview.typeinfo;import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;abstract class Shape {void draw(){/** 重点在这里: * this指代的是实例对象,由于使用+连接字符串, 会自动调用对象的toString()方法.*/System.out.println(this + ".draw()");}void rotate(){Class<? extends Shape> clazz = this.getClass();if(!clazz.getSimpleName().equals("Circle")){System.out.println("旋转"+ this);}else{System.out.println(this+"不需要旋转");}}public abstract String toString();
    }class Circle extends Shape{@Overridepublic String toString() {return "Circle";}
    }class Square extends Shape{@Overridepublic String toString() {return "Square";}
    }class Triangle extends Shape{@Overridepublic String toString() {return "Triangle";}
    }//菱形
    class Rhomboid extends Shape{@Overridepublic String toString() {return "Rhomboid";}
    }public class Shapes {public static void main(String[] args) {List<Shape> shapes = new ArrayList<Shape>(Arrays.asList(new Circle(), new Square(), new Triangle(), new Rhomboid()));for(Shape shape:shapes){shape.draw();shape.rotate();}/*for(int i=0;i<shapes.size(); i++){Shape shape = shapes.get(i);if(i == 3){Rhomboid r = (Rhomboid)shape;Circle c = (Circle)shape;}}*/}}

     

  6. 第七题
    package net.mindview.typeinfo.test8;import java.util.HashSet;
    import java.util.Set;interface A {}
    interface B {}
    interface C {}class D implements B{private int di=0;private String dname="";static{System.out.println("this is D");}
    }class E extends D implements A, B, C{private int ei=0;private String ename="";static{System.out.println("this is E");}
    }class F extends E implements A {private int fi=0;private String fname="";static{System.out.println("this is F");}
    }
    /*** 接受任意对象作为参数, 递归打印出该对象继承体系中所有的的类.* 包括继承的父类, 和实现的接口* * 分析: 一个类智能继承一个父类, 可以实现多个接口.* 父类可以继承一个类,实现多个接口. 实现的接口可能和子类重复, 因此需要去重.* 递归实现* @author samsung**/
    class G {public void printSuperClass(Class c){if(c == null) return ;System.out.println(c.getName());//得到这个类的接口Class[] interfaces = c.getInterfaces();for(Class interfaceClass:interfaces){printSuperClass(interfaceClass);}printSuperClass(c.getSuperclass());}
    }public class Test8 {public static void main(String[] args) {G g = new G();g.printSuperClass(F.class);}
    }

    运行结果:

    net.mindview.typeinfo.test8.F
    net.mindview.typeinfo.test8.A
    net.mindview.typeinfo.test8.E
    net.mindview.typeinfo.test8.A
    net.mindview.typeinfo.test8.B
    net.mindview.typeinfo.test8.C
    net.mindview.typeinfo.test8.D
    net.mindview.typeinfo.test8.B
    java.lang.Object

     

  7. 第八题
    package net.mindview.typeinfo.test8;interface A {}
    interface B {}
    interface C {}class D {static{System.out.println("this is D");}
    }class E extends D implements A, B, C{static{System.out.println("this is E");}
    }class F extends E {static{System.out.println("this is F");}
    }class G {public void printSuperClass(Class c){Class upClass = c.getSuperclass();try {System.out.println(upClass.newInstance());} catch (InstantiationException e) {System.out.println("实例化Instance 失败");System.exit(1);} catch (IllegalAccessException e) {System.out.println("实例化Instance 失败");System.exit(1);}if(upClass.getSuperclass() != null ){printSuperClass(upClass);}}
    }public class Test8 {public static void main(String[] args) {G g = new G();g.printSuperClass(F.class);}
    }

    运行结果:

    this is D
    this is E
    net.mindview.typeinfo.test8.E@17cb0a16
    net.mindview.typeinfo.test8.D@1303368e
    java.lang.Object@37f2ae62

     

  8. 第九题
    package net.mindview.typeinfo.test9;import java.lang.reflect.Field;interface A {}
    interface B {}
    interface C {}class D {public int i=0;public String name="";static{System.out.println("this is D");}
    }class E extends D implements A, B, C{public int i=0;public String name="";static{System.out.println("this is E");}
    }class F extends E {public int i=0;public String name="";static{System.out.println("this is F");}
    }class G {public void printSuperClass(Class c){Class upClass = c.getSuperclass();try {//获取类中的字段Field[] fs = upClass.getDeclaredFields();System.out.println(fs.length);for(Field f:fs){//打印字段名System.out.println(f.getName());//获取字段值Object value = upClass.getDeclaredField(f.getName());System.out.println(value);}} catch (Exception e1) {e1.printStackTrace();}try {System.out.println(upClass.newInstance());} catch (InstantiationException e) {System.out.println("实例化Instance 失败");System.exit(1);} catch (IllegalAccessException e) {System.out.println("实例化Instance 失败");System.exit(1);}if(upClass.getSuperclass() != null ){printSuperClass(upClass);}}
    }public class Test9 {public static void main(String[] args) {G g = new G();g.printSuperClass(F.class);}
    }

    运行结果:

    2
    i
    public int net.mindview.typeinfo.test9.E.i
    name
    public java.lang.String net.mindview.typeinfo.test9.E.name
    this is D
    this is E
    net.mindview.typeinfo.test9.E@1440578d
    2
    i
    public int net.mindview.typeinfo.test9.D.i
    name
    public java.lang.String net.mindview.typeinfo.test9.D.name
    net.mindview.typeinfo.test9.D@26f04d94
    0
    java.lang.Object@38a3c5b6

     

  9. 第十题
    package net.mindview.typeinfo.test10;
    class Pot{}
    public class  Test10 {public static void judgeType(Object c){Class arrType = c.getClass().getComponentType();System.out.println(arrType.getName());}public static void main(String[] args) {judgeType(new char[10]);judgeType(new String[10]);judgeType(new long[10]);judgeType(new boolean[10]);judgeType(new Pot[10]);}}

    运行结果:

    char
    java.lang.String
    long
    boolean
    net.mindview.typeinfo.test10.Pot

     

  10. f
  11. asf
  12. a
  13. 第十四题
    package net.mindview.typeinfo.test14;import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Random;import net.mindview.typeinfo.factory.Factory;/***  部件类*  *  比如: 有过滤器部件, 皮带部件等. *  空气净化器中需要有过滤器部件, 因此要有一个制造空气净化器的过滤器的工厂*  汽车尾气净化器也需要有过滤器部件, 因此需要一个制造汽车尾气的过滤器的工厂*  *  皮带*  车轮需要皮带, 因此需要一个制造车轮的皮带的工厂* @author samsung**/
    class Part{@Overridepublic String toString() {return this.getClass().getSimpleName();}//目前已注册的部件工厂static List<String> partNames = Arrays.asList("net.mindview.typeinfo.test14.FuelFilter","net.mindview.typeinfo.test14.AirFilter","net.mindview.typeinfo.test14.CabinFilter","net.mindview.typeinfo.test14.OilFilter","net.mindview.typeinfo.test14.FanBelt","net.mindview.typeinfo.test14.GeneratorBelt","net.mindview.typeinfo.test14.PowerSteeringBelt");static{}private static Random rand = new Random(47);//随机得到一个已注册的部件工厂, 并制造部件public static Part createRandom(){int n = rand.nextInt(partNames.size());try {return (Part) Class.forName(partNames.get(n)).newInstance();} catch (InstantiationException e) {e.printStackTrace();} catch (IllegalAccessException e) {e.printStackTrace();} catch (ClassNotFoundException e) {e.printStackTrace();}return null;}
    }//过滤器部件
    class Filter extends Part {}//燃料过滤器部件
    class FuelFilter extends Filter {public static class Factory implements net.mindview.typeinfo.factory.Factory<FuelFilter>{@Overridepublic FuelFilter create() {return new FuelFilter();}}
    }//空气净化器部件
    class AirFilter extends Filter {public static class Factory implements net.mindview.typeinfo.factory.Factory<AirFilter>{@Overridepublic AirFilter create() {return new AirFilter();}}
    }//机舱空气过滤器部件
    class CabinFilter extends Filter {public static class Factory implements net.mindview.typeinfo.factory.Factory<CabinFilter>{@Overridepublic CabinFilter create() {return new CabinFilter();}}
    }//燃油过滤器部件
    class OilFilter extends Filter {public static class Factory implements net.mindview.typeinfo.factory.Factory<OilFilter>{@Overridepublic OilFilter create() {return new OilFilter();}}
    }//皮带部件
    class Belt extends Part{}//风扇皮带部件
    class FanBelt extends Belt {public static class Factory implements net.mindview.typeinfo.factory.Factory<FanBelt>{@Overridepublic FanBelt create() {return new FanBelt();}}
    }//发动机皮带部件
    class GeneratorBelt extends Belt {public static class Factory implements net.mindview.typeinfo.factory.Factory<GeneratorBelt>{@Overridepublic GeneratorBelt create() {return new GeneratorBelt();}}
    }//转向动力装置皮带部件
    class PowerSteeringBelt extends Belt {public static class Factory implements net.mindview.typeinfo.factory.Factory<PowerSteeringBelt>{@Overridepublic PowerSteeringBelt create() {return new PowerSteeringBelt();}}
    }/*** 查询目前已注册的工厂类* @author samsung**/
    public class RegisteredFactories {public static void main(String[] args) {for(int i=0;i<10;i++){System.out.println(Part.createRandom());}}}

     

  14. 第十五题: 内容太多, 直接参考demo
  15. af
  16. a
  17. 第十八题:
    package net.mindview.typeinfo;import java.lang.reflect.Constructor;
    import java.lang.reflect.Method;
    import java.util.regex.Pattern;public class ShowMethods {private ShowMethods(){}private static String usage = ""+ "usage:\n"+ "ShowMethods qualified.class.name\n"+ "To show all methods in class or:\n"+ "ShowMethods qualified.class.name. word\n"+ "To search for methodds invoiving 'word'";private static Pattern p = Pattern.compile("\\w+\\.");public static void main(String[] args) {if(args.length<1){System.out.println(usage);System.exit(1);}int lines = 0; try {Class<?> c = Class.forName(args[0]);//getMethods获取的是整个继承树中所有的方法Method[] methods = c.getMethods();//获取已有的构造器Constructor[] ctors = c.getConstructors();if(args.length == 1){//打印所有继承树中的方法名for(Method method: methods){System.out.println(p.matcher(method.toString()).replaceAll(""));}//打印全部构造器for(Constructor ctor: ctors){System.out.println(p.matcher(ctor.toString()).replaceAll(""));}lines = methods.length + ctors.length;}else {//打印指定类中的方法for(Method method: methods){if(method.toString().indexOf(args[1]) != -1){System.out.println(p.matcher(method.toString()).replaceAll(""));lines++;}}//打印构造器for(Constructor ctor :ctors){if(ctor.toString().indexOf(args[1])!=-1){System.out.println(p.matcher(ctor.toString()).replaceAll(""));lines++;}}}} catch (ClassNotFoundException e) {e.printStackTrace();}}}

     

  18. af
  19. a
  20. f
  21. af
  22. a
  23. fa
  24. f

转载于:https://www.cnblogs.com/ITPower/p/8664944.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/486500.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

TinyML:下一轮人工智能革命

来源&#xff1a;AI前线作者&#xff1a;Matthew Stewart译者&#xff1a;盖磊策划&#xff1a;陈思人工智能的一个趋势是正快速从“云端”走向“边缘”。TinyML 是在海量的物联网设备端微控制器上实现的人工智能&#xff0c;有望在未来几年内&#xff0c;成为人工智能在工业领…

springboot导入项目依赖报错_最详细的 Spring Boot 多模块开发与排坑指南

来源于公众未读代码 &#xff0c;作者达西呀创建项目创建一个 SpringBoot 项目非常的简单&#xff0c;简单到这里根本不用再提。你可以在使用 IDEA 新建项目时直接选择 Spring Initlalize 创建一个 Spring Boot 项目&#xff0c;也可以使用 Spring 官方提供的 Spring Boot 项目…

图书管理系统html_结自主可控数字化硕果,同方鼎欣推进基于OFD技术的数字档案管理系统研发...

01浅谈建立自主可控版式格式的重要性说起版式文档&#xff0c;相信大家首先想到的就是Adobe公司推出的PDF&#xff0c;这种格式的电子文档&#xff0c;其效果不因软硬件环境变化而变化&#xff0c;在版面、字体、字号方面可以与纸质文件保持一致&#xff0c;这就是版式文档的重…

联结你与万物的8种元素

本文经授权转载自《原理》微信公众号你不仅由元素构成&#xff0c;你其实就是元素。不同元素的原子在你的身体里&#xff0c;它们随你而动&#xff0c;它们与你一同经历成功的狂喜&#xff0c;一同承受失败的悲痛&#xff0c;也一同走过平淡的日常。当你吃下食物时&#xff0c;…

Spring中的用到的设计模式大全

spring中常用的设计模式达到九种&#xff0c;我们举例说明&#xff1a; 第一种&#xff1a;简单工厂又叫做静态工厂方法&#xff08;StaticFactory Method&#xff09;模式&#xff0c;但不属于23种GOF设计模式之一。 简单工厂模式的实质是由一个工厂类根据传入的参数&#xff…

crontab 日志_聊聊老板让我删除日志文件那些事儿

一、背景老板&#xff1a;小白&#xff0c;刚才咱们的机器告警磁盘空间不足了&#xff0c;你去定位一下原因。我&#xff1a;(......空间不足碍我屁事儿)好的&#xff0c;马上定位我&#xff1a;老板&#xff0c;太多N天前的日志文件占用了太多空间。 老板&#xff1a;你感觉你…

欧氏空间内积定义_MP5:内积、外积、面积、Hermite内积、辛内积

我们发现&#xff0c;内积和外积都是和相对夹角相关&#xff0c;而和一对向量的整体刚体变换无关。本讲用一种特别的角度&#xff0c;从勾股定理出发&#xff0c;把两个向量长度构成的矩形面积分解称内积和外积两个部分。两个向量的夹角&#xff0c;在复数上可以表达为一个向量…

【专家观点】刘经南院士:北斗+5G为何能引领新基建?

来源&#xff1a;智能研究院日前&#xff0c;“第四届全球未来出行大会&#xff08;GFM2020&#xff09;”在德清召开。本次大会旨在探讨未来的城市、未来的出行、未来的汽车如何为居民提供更加经济、便捷、安全、科技友好的新出行方式。在论坛的演讲中&#xff0c;中国工程院院…

Linux 笔记 - 第九章 Linux 中软件的安装

博客地址&#xff1a;http://www.moonxy.com 一、前言 在 Linux 系统中&#xff0c;应用程序的软件包主要分为两种&#xff1a;1&#xff09;第一种是二进制的可执行软件包&#xff0c;也就是解开包后就可以直接运行。在 Windows 中几乎所有的软件包都是这种类型&#xff0c;类…

ae中心点重置工具_(精品)AE从小白到大神之路(七)-AE动画—动效常见的设计方法...

动画——动效常见的设计方法一&#xff0e;基础动画&#xff1a;1.通过物体本身的旋转/缩放/位移/不透明度等基本属性来做的一些动效属于最基础的动画效果。二&#xff0e;路径动画&#xff1a;&#xff08;1&#xff09;修剪路径动画&#xff08;前面系列案例——下载提示完成…

css 透明度_如何使用CSS实现精美视频片头制作

借助CSS所提供的动画效果&#xff0c;旋转效果除了能够制作动画及网页页面元素&#xff0c;如按钮之外&#xff0c;还可以使用CSS实现精美的动态片头的制作。本文主要介绍CSS与HTML实现精美的动画片头制作实例。如何使用CSS实现精美片头制作CSS动态片头设计实例本例设计使用烟雾…

重磅盘点:过去8年中深度学习最重要的想法

原文&#xff1a;Deep Learning’s Most Important Ideas[1]作者&#xff1a;Denny Britz&#xff08;ML 研究员&#xff0c;Google Brain 前成员&#xff09;译者&#xff1a;REN深度学习是一个瞬息万变的领域&#xff0c;层出不穷的论文和新思路可能会令人不知所措。即使是经…

ActiveMQ 发送和接收消息

一、添加 jar 包 <dependency><groupId>org.apache.activemq</groupId><artifactId>activemq-all</artifactId><version>5.11.2</version> </dependency> 二、消息传递的两种形式 1、点对点&#xff1a;发送的消息只能被一个消…

机器人 蓝buff 钩_机器人要在S赛登场了?Ming韩服练起来了,这是RNG黑科技?

随着S9全球总决赛日程的逼近&#xff0c;各大战队也纷纷结束了休假&#xff0c;投入到了紧张的训练之中。对于这次S9世界赛的版本&#xff0c;应该是上中野的版本&#xff0c;因为不少战士单带型上单得到了巨大加强&#xff0c;而且中路会有一些法师英雄回归&#xff0c;总体来…

java构造器_Java类加载的过程

阅读本文约需要8分钟 大家好&#xff0c;我是你们的导师&#xff0c;经常看我朋友圈的同学应该知道&#xff0c;我每天会在微信上给大家免费提供以下服务&#xff01;1、长期为你提供最优质的学习资源&#xff01;2、给你解决技术问题&#xff01;3、每天在朋友圈里分享优质的技…

再讲卷积的本质及物理意义,解释的真幽默!

来源&#xff1a;电子工程专辑编辑 ∑Gemini分三个部分来理解&#xff1a;1&#xff0e;信号的角度2&#xff0e;数学家的理解&#xff08;外行&#xff09;3&#xff0e;与多项式的关系>>>>卷积这个东东是“信号与系统”中论述系统对输入信号的响应而提出的。因为…

jdbcTemplate小用总结

一、queryForList重写 public List<Map<String, Object>> queryForList(String tablename, Map<String, String> param) {//TODO valid tablename is nullStringBuilder sql new StringBuilder("select sys_id from "); sql.append(tablename);s…

分区助手扩大c盘后自动修复_磁盘分区工具,这个好用;无论调整C盘还是系统迁移...

使用傲梅分区助手安全地对磁盘进行分区安全分区注意事项1.对于重要数据&#xff0c;最好习惯定期备份。 您可以使用免费备份软件- 傲梅轻松备份进行备份。2.当傲梅分区助手正在移动数据时&#xff0c;请不要轻易地结束过程或强制关闭程序。3.在分区过程中&#xff0c;请确保您的…

c语言转义字符_C语言啊中的转义符有什么含义?

其实所谓的换行符就是回车&#xff0c;在各类编程语言中换行符是很常见的&#xff0c;而转义字符是一种特殊的字符常量。转义字符以反斜线""开头&#xff0c;后跟一个或几个字符。转义字符具有特定的含义&#xff0c;不同于字符原有的意义&#xff0c;故称“转义”字…

matlab设置图片背景透明_Matlab ---- 有透明度的png图像的显示与图层叠加方法

需求和问题来源由于图形图像的语义分割工作中&#xff0c;需要对不同类型的区域&#xff0c;进行标示&#xff0c;但又不能完全覆盖背景图像。这产生了一个新的需求&#xff1a;产生一个带有透明度的图像&#xff1b;将带有透明度的图像&#xff0c;叠加在原始图像上。Matlab中…