java编程思想第四版第九章习题

简介: 输出结果: 调用基类构造方法的时候, 只是给子类的成员变量分配了一块内存空间, 并将内存空间的值设置为默认值0.

1.第三题


package net.mindview.interfaces;
abstract class Base{
    public Base(){
        print();
    }
    abstract void print();
}
public class Test3 extends Base{
    private int i = 5;
    @Override
    void print() {
        System.out.println(i);
    }
    public static void main(String[] args) {
        Test3 t = new Test3();
        t.print();
    }
}


输出结果:


0
5


调用基类构造方法的时候, 只是给子类的成员变量分配了一块内存空间, 并将内存空间的值设置为默认值0. 当真正调用子类构造方法之前才会为成员变量赋值.


2.第七题


package net.mindview.interfaces;
//啮(nie四声)齿动物
interface Rodent{
  void say();
}
//老鼠
class Mouse implements Rodent{
  public void say(){System.out.println("hi,我是 Mouse");}
}
//鼹鼠
class Gerbil implements Rodent{
  public void say(){System.out.println("hi,我是 Gerbil");}
}
//大颊鼠
class Hamster implements Rodent{
  public void say(){System.out.println("hi,我是 Hamster");}
}
public class RodentHome {
    public static void instroduce(Rodent rodent){
        rodent.say();
    }
    public static void instroduceAll(Rodent[] rodents){
        for(Rodent r: rodents){
            instroduce(r);
        }
    }
    public static void main(String[] args) {
        Rodent[] rodents = {
                new Mouse(),
                new Gerbil(),
                new Hamster()
        };
        instroduceAll(rodents);
    }
}


3.第八题


package net.mindview.interfaces;
import java.util.Random;
/** 定义一个乐器类 */
interface Instrucment {
    int value = 5; //定义在接口中的成员是static&final的
    void play(Note n);
    void adjust();
}
/**抽象类*/
abstract class PublicMethod implements Instrucment{
    public abstract void play(Note n);
    //这个方法不用谢,以为继承自Object的类都有toString()方法
    //public abstract String toString();
    public abstract void adjust();
}
/**定义n个子类*/
class Wind extends PublicMethod {
    public void play(Note n){ System.out.println("Wind.play() " + n);}
    public String toString(){ return "Wind.what()";}
    public void adjust(){ System.out.println("Wind.adjust()");}
}
class Purcussion extends PublicMethod{
    public void play(Note n){ System.out.println("Purcussion.play() " + n);}
    public String toString(){ return "Purcussion.what()";}
    public void adjust(){ System.out.println("Purcussion.adjust()");}
}
class Stringed extends PublicMethod{
    public void play(Note n){ System.out.println("Stringed.play() " + n);}
    public String toString(){ return "Stringed.what()";}
    public void adjust(){ System.out.println("Stringed.adjust()");}
}
class Brass extends Wind{
    public void play(Note n){ System.out.println("Brass.play() " + n);}
    public void adjust(){ System.out.println("Brass.adjust()");}
}
class WoodWind extends Wind{
    public void play(Note n){ System.out.println("WoodWind.play() " + n);}
    public String toString(){ return "WoodWind.what()";}
}
class Other extends Wind{
    public void play(Note n){ System.out.println("Other.play() " + n);}
    public String toString(){ return "Other.what()";}
}
/** 定义一个随机乐器生成器 */
class RandomInstrucmentGenerator {
    Random rand = new Random(100);
    public Instrucment next(){
        switch(rand.nextInt(6)){
            default:
            case 0: return new Wind();
            case 1: return new Purcussion();
            case 2: return new Stringed();
            case 3: return new Brass();
            case 4: return new WoodWind();
            case 5: return new Other();
        }
    }
}
public class Music5 {
    public static void tune(Instrucment i){
        i.play(Note.MIDDLE_C);
        i.toString();
    }
    public static void tuneAll(Instrucment[] e){
        for(Instrucment i : e){
            tune(i);
        }
    }
    private static RandomInstrucmentGenerator gen = new RandomInstrucmentGenerator();
    public static void main(String[] args) {
        /*Instrucment[] orchestra = {
            new Wind(),
            new Purcussion(),
            new Stringed(),
            new Brass(),
            new WoodWind(),
            new Other()
        };*/
        Instrucment[] ins = new Instrucment[10];
        for(int i=0; i<ins.length; i++){
            ins[i] = Music5.gen.next();
        }
        tuneAll(ins);
    }
}


4.练习11--这个练习是巩固如何写适配器设计模式


package net.mindview.interfaces;
/**
 * 字符串反转类
 */
public class StringReverse {
    public String name(){
        return getClass().getSimpleName();
    }
    //反转
    public String reverse(String s) {
        char[] array = s.toCharArray();
        String reverse = "";
        for (int i = array.length - 1; i >= 0; i--) {
            reverse += array[i];
        }
        return reverse;
    }
}


package net.mindview.interfaces;
public class StringReverseAdapter implements Processor{
    StringReverse stringReverse;
    public StringReverseAdapter(StringReverse stringReverse){
        this.stringReverse = stringReverse;
    }
    @Override
    public String name() {
        // TODO Auto-generated method stub
        return stringReverse.name();
    }
    @Override
    public Object process(Object input) {
        // TODO Auto-generated method stub
        return stringReverse.reverse((String)input);
    }
}


在使用的时候,可以直接调用Apply的process方法


public static void main(String[] args) {
        Apply.process(new StringReverseAdapter(new StringReverse()), "i am lily");
    }


Apply方法没有写出来,这个类实在课文内部定义的,可以参考http://www.cnblogs.com/ITPower/p/8550627.html中第二点:解耦的案例一,案例二和案例三. 其中Apply类定义在案例一中。


5.第十二题


package net.mindview.interfaces;
interface CanFight {
    void fight();
}
interface CanSwim {
    void swim();
}
interface CanFly {
    void fly();
}
interface CanClimb {
    void climb();
}
//行为特征
class ActionCharacter {
    public void fight(){ }
}
class Hero extends ActionCharacter implements CanFight,CanSwim,CanFly,CanClimb{
    @Override
    public void fly() { }
    @Override
    public void swim() { }
    @Override
    public void climb() { }
} 
//冒险
public class Adventure {
    public static void f(CanFly fly){
        fly.fly();
    }
    public static void s(CanSwim swim){
        swim.swim();
    }
    public static void v(CanFight fight){
        fight.fight();
    }
    public static void m(ActionCharacter ac){
        ac.fight();
    }
    public static void p(CanClimb c){
        c.climb();
    }
    public static void main(String[] args) {
        Hero hero = new Hero();
        f(hero);
        s(hero);
        v(hero);
        m(hero);
        p(hero);
    }
}


6.第十四题:这道题的思想和书上p180页的案例思想一样.继承+多次实现接口


package net.mindview.interfaces;
interface BaseInterface1 {
    public void a();
    public void b();
}
interface BaseInterface2 {
    public void c();
    public void d();
}
interface BaseInterface3 {
    public void e();
    public void f();
}
interface Interface4 extends BaseInterface1,BaseInterface2,BaseInterface3{
    public void g();
}
class Specific implements Interface4{
    public void h(){ }
    @Override
    public void a() { }
    @Override
    public void b() { }
    @Override
    public void c() { }
    @Override
    public void d() { }
    @Override
    public void e() { }
    @Override
    public void f() { }
    @Override
    public void g() { }
}
public class Test14 extends Specific implements Interface4{
    public static void aa(BaseInterface1 b1){
        b1.a();
        b1.b();
    }
    public static void bb(BaseInterface2 b){
        b.c();
        b.d();
    }
    public static void cc(BaseInterface3 b){
        b.e();
        b.f();
    }
    public static void dd(Interface4 b){
        b.g();
    }
    public static void main(String[] args) {
        Specific specific = new Specific();
        aa(specific);
        bb(specific);
        cc(specific);
        dd(specific);
    }
}


7.第十六题


package net.mindview.interfaces;
import java.io.IOException;
import java.nio.CharBuffer;
import java.util.Random;
import java.util.Scanner;
class RandomChar {
    Random rand = new Random(47);
    Random count = new Random(47);
    private static final char[] captials = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray(); 
    public char[] make(){
        StringBuffer sb = new StringBuffer("");
        for(int i=0; i<count.nextInt(10); i++){
            sb.append(captials[rand.nextInt(captials.length)]);
        }
        return sb.toString().toCharArray();
    }
    public static void main(String[] args) {
        RandomChar rc = new RandomChar();
        char[] c = rc.make();
        System.out.println(c);
        for(char ch:c){
            System.out.print(ch);
        }
    }
}
public class AdapterRandomChar implements Readable{
    RandomChar rc;
    private int count;
    public AdapterRandomChar(RandomChar rc, int count){
        this.rc = rc;
        this.count = count;
    }
    @Override
    public int read(CharBuffer cb) throws IOException {
        if(count-- == 0){
            return -1;
        }
        StringBuffer sb = new StringBuffer("");
        for(char c:rc.make()){
            sb.append(c);
        }
        String result = sb.toString() + " " ;
        cb.append(result);
        return result.length();
    }
    public static void main(String[] args) {
        Scanner s = new Scanner(new AdapterRandomChar(new RandomChar(), 5));
        while(s.hasNext()){
            System.out.print(s.next()+" ");
        }
    }
}


8.第十八题


package net.mindview.interfaces;
//产品
interface Cycle {
}
class Unicycle implements Cycle{
    public Unicycle(){
        System.out.println("我是一个Unicycle");
    }
}
class Bicycle implements Cycle{
    public Bicycle(){
        System.out.println("我是一个Bicycle");
    }
}
class Tricycle implements Cycle{
    public Tricycle(){
        System.out.println("我是一个Tricycle");
    }
}
//工厂类
interface CycleFactory{
    public Cycle make();
}
class UnicycleFactory implements CycleFactory{
    @Override
    public Cycle make() {
        return new Unicycle();
    }
}
class BicycleFactory implements CycleFactory{
    @Override
    public Cycle make() {
        return new Bicycle();
    }
}
class TricycleFactory implements CycleFactory{
    @Override
    public Cycle make() {
        return new Tricycle();
    }
}
public class CycleCustomer {
    public static Cycle serviceCustoemr(CycleFactory fact){
        return fact.make();
    }
    public static void main(String[] args) {
        Cycle u = serviceCustoemr(new UnicycleFactory());
        Cycle b = serviceCustoemr(new BicycleFactory());
        Cycle t = serviceCustoemr(new TricycleFactory());
    }
}


9.第十九题


package net.mindview.interfaces;
import java.util.Random;
/**
 * 这时一个抛硬币和掷骰子等类型的框架
 */
interface ThrowProduct {}
class ThrowCorn implements ThrowProduct{
    Random rand = new Random(47);
    public ThrowCorn(){
        if(rand.nextInt(100) %2 ==0){
            System.out.println("硬币的正面");
        }else{
            System.out.println("硬币的反面");
        }
    }
}
class ThrowDice implements ThrowProduct{
    Random rand = new Random(47);
    public ThrowDice(){
        System.out.println("掷的骰子数是"+rand.nextInt(7));
    }
}
interface ThrowFactory{
    ThrowProduct throwOut();
}
class ThrowCornFactory implements ThrowFactory{
    public ThrowCornFactory(){
        System.out.print("开始抛硬币:");
    }
    @Override
    public ThrowProduct throwOut() {
        return new ThrowCorn();
    }
}
class ThrowDiceFactory implements ThrowFactory{
    public ThrowDiceFactory(){
        System.out.print("开始掷骰子:");
    }
    @Override
    public ThrowProduct throwOut() {
        return new ThrowDice();
    }
}
public class ThrowFrame {
    public static ThrowProduct service(ThrowFactory f){
        return f.throwOut();
    }
    public static void main(String[] args) {
        service(new ThrowCornFactory());
        service(new ThrowDiceFactory());
    }
}


结果:


开始抛硬币:硬币的正面
开始掷骰子:掷的骰子数是6
相关文章
|
5天前
|
设计模式 安全 Java
Java编程中的单例模式深入剖析
【10月更文挑战第21天】在Java的世界里,单例模式是设计模式中一个常见而又强大的存在。它确保了一个类只有一个实例,并提供一个全局访问点。本文将深入探讨如何正确实现单例模式,包括常见的实现方式、优缺点分析以及最佳实践,同时也会通过实际代码示例来加深理解。无论你是Java新手还是资深开发者,这篇文章都将为你提供宝贵的见解和技巧。
89 65
|
1天前
|
缓存 Java 调度
Java中的多线程编程:从基础到实践
【10月更文挑战第24天】 本文旨在为读者提供一个关于Java多线程编程的全面指南。我们将从多线程的基本概念开始,逐步深入到Java中实现多线程的方法,包括继承Thread类、实现Runnable接口以及使用Executor框架。此外,我们还将探讨多线程编程中的常见问题和最佳实践,帮助读者在实际项目中更好地应用多线程技术。
9 3
|
3天前
|
监控 安全 Java
Java多线程编程的艺术与实践
【10月更文挑战第22天】 在现代软件开发中,多线程编程是一项不可或缺的技能。本文将深入探讨Java多线程编程的核心概念、常见问题以及最佳实践,帮助开发者掌握这一强大的工具。我们将从基础概念入手,逐步深入到高级主题,包括线程的创建与管理、同步机制、线程池的使用等。通过实际案例分析,本文旨在提供一种系统化的学习方法,使读者能够在实际项目中灵活运用多线程技术。
|
4天前
|
存储 安全 Java
Java编程中的对象序列化与反序列化
【10月更文挑战第22天】在Java的世界里,对象序列化和反序列化是数据持久化和网络传输的关键技术。本文将带你了解如何在Java中实现对象的序列化与反序列化,并探讨其背后的原理。通过实际代码示例,我们将一步步展示如何将复杂数据结构转换为字节流,以及如何将这些字节流还原为Java对象。文章还将讨论在使用序列化时应注意的安全性问题,以确保你的应用程序既高效又安全。
|
1天前
|
缓存 安全 Java
Java中的多线程编程:从基础到实践
【10月更文挑战第24天】 本文将深入探讨Java中的多线程编程,包括其基本原理、实现方式以及常见问题。我们将从简单的线程创建开始,逐步深入了解线程的生命周期、同步机制、并发工具类等高级主题。通过实际案例和代码示例,帮助读者掌握多线程编程的核心概念和技术,提高程序的性能和可靠性。
7 2
|
2天前
|
Java
Java中的多线程编程:从基础到实践
本文深入探讨Java多线程编程,首先介绍多线程的基本概念和重要性,接着详细讲解如何在Java中创建和管理线程,最后通过实例演示多线程的实际应用。文章旨在帮助读者理解多线程的核心原理,掌握基本的多线程操作,并能够在实际项目中灵活运用多线程技术。
|
2天前
|
Java 程序员 开发者
Java编程中的异常处理艺术
【10月更文挑战第24天】在Java的世界里,代码就像一场精心编排的舞蹈,每一个动作都要精准无误。但就像最完美的舞者也可能踩错一个步伐一样,我们的程序偶尔也会遇到意外——这就是所谓的异常。本文将带你走进Java的异常处理机制,从基本的try-catch语句到高级的异常链追踪,让你学会如何优雅地处理这些不请自来的“客人”。
|
4天前
|
Java 数据处理 开发者
Java多线程编程的艺术:从入门到精通####
【10月更文挑战第21天】 本文将深入探讨Java多线程编程的核心概念,通过生动实例和实用技巧,引导读者从基础认知迈向高效并发编程的殿堂。我们将一起揭开线程管理的神秘面纱,掌握同步机制的精髓,并学习如何在实际项目中灵活运用这些知识,以提升应用性能与响应速度。 ####
20 3
|
7天前
|
Java API 调度
Java中的多线程编程:理解与实践
本文旨在为读者提供对Java多线程编程的深入理解,包括其基本概念、实现方式以及常见问题的解决方案。通过阅读本文,读者将能够掌握Java多线程编程的核心知识,提高自己在并发编程方面的技能。
|
5天前
|
Java
Java中的多线程编程:从入门到精通
本文将带你深入了解Java中的多线程编程。我们将从基础概念开始,逐步深入探讨线程的创建、启动、同步和通信等关键知识点。通过阅读本文,你将能够掌握Java多线程编程的基本技能,为进一步学习和应用打下坚实的基础。