博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 实验五 王奕开
阅读量:6821 次
发布时间:2019-06-26

本文共 3151 字,大约阅读时间需要 10 分钟。

(一)学习总结

1.思维导图:
1080047-20170423194203679-921655876.jpg
2.阅读下面程序,分析代码是否能编译通过,如果不能,说明原因,并进行改正。如果能,列出运行结果

interface Animal{            void breathe();        void run();        void eat();    }    class Dog implements Animal{        public void breathe(){            System.out.println("I'm breathing");        }        void eat(){            System.out.println("I'm eating");        }    }    public class Test{        public static void main(String[] args){            Dog dog = new Dog();            dog.breathe();            dog.eat();        }    }

不能通过编译,因为接口有run()方法,在Dog类中并没有实现,在class中eat()应为public,权限应该比接口中的大,不然无法继承。

改后代码:

interface Animal{            void breathe();        void run();        void eat();    }    class Dog implements Animal{        public void breathe(){            System.out.println("I'm breathing");        }        public void eat(){            System.out.println("I'm eating");        }        public void run() {            System.out.println("I'm running");                    }    }    public class Test{        public static void main(String[] args){            Dog dog = new Dog();            dog.breathe();            dog.eat();            dog.run();        }    }

运行结果为:

I'm breathing    I'm eating    I'm running

4.运行下面的程序

import java.util.Arrays;    public class Test{        public static void main(String[] args){            String[] fruits = {"peach","banana","orange","apple"};            Arrays.sort(fruits);            for(int i = 0;i < fruits.length;i++)            {                System.out.println(fruits[i]);            }        }    }

运行结果:

applebananaorangepeach

将结果倒序输出:

public class Test{    public static void main(String[] args){        String[] fruits = {"peach","banana","orange","apple"};        Arrays.sort(fruits,new FruitsComparator());        for(int i = fruits.length;i > 0;i--)        {            System.out.println(fruits[i]);        }    }}

在其文件中添加Comparator方法

public class FruitsComparator {    public int compare(String o1, String o2) {        char a = o1.charAt(0);        char b = o2.charAt(0);        if(o1.equals(o2)){            return 0;        }else if(a>b){            return -1;        }else{            return 1;        }    }}

结果为:

peach orange banana apple

(二)实验总结

实验内容:
1.某工厂生产各种音乐盒,客户无需知道音乐盒的制作过程,只需知道如何播放音乐盒即可。用简单工厂设计模式实现该过程:接口MusicBox具有方法play(),两个音乐盒类PianoBox,ViolinBox,MusicBoxFactory 产生MusicBox的实例。
程序设计思路:利用工厂设计的思路,建立一个音乐盒接口,将PianoBox类和ViolinBox类进行继承,重写接口的方法。
实验无问题。
2.修改第三次作业的第一题,使用java.util.Date类表示职工的生日和参加工作时间,并将职工信息按照生日大小排序后输出。(分别用comparable和comparator实现)
程序设计思路:首先将员工的生日和入职时间放进数组,用Date类型进行输入,将员工类进行继承,用comparable对生日进行排序
问题1:将生日和入职时间的数组放进了class类中
解决方案:将其放回测试类
问题2:toString()中不会输出生日和入职时间
解决方案:在方法中用匿名对象输入

public String toString() {    return "员工编号:" + this.eno + "   姓名:" + this.ena + "  性别:" + this.sex+"生日:"+new SimpleDateFormat("yyyy-MM-dd").format(birthday)+"入职时间:"+new SimpleDateFormat("yyyy-MM-dd").format(workday);}

3.在案例宠物商店的基础上,实现以下功能:

(1)展示所有宠物
(2)购买宠物
(3)显示购买清单
程序设计思路:创建三个类,在宠物商店中创建Cat,BigDog,SmallDog的三个数组存放宠物,在Person类中进行购买
问题1:在进行购买时,将getPinzhong写错成getName;
解决方案:改后正确
(三)代码托管
git@git.oschina.net:wangyikai1996/shiyan5.git
1080047-20170423203942741-1598695829.png

转载于:https://www.cnblogs.com/494625951-wangyikai/p/6754122.html

你可能感兴趣的文章
[Python] Boolean Or "Mask" Index Arrays filter with numpy
查看>>
有了#ifdef 为什么还需要#if defined
查看>>
eclipse中.properties文件不能输入中文的解决办法
查看>>
[Unit Testing] Mock a Node module's dependencies using Proxyquire
查看>>
C++中malloc/free和new/delete 的使用
查看>>
ASP.NET MVC读取XML并使用ViewData显示
查看>>
4.lists(双向链表)
查看>>
导入项目的时候报错Error:Could not find com.android.support.constraint:constraint-layout:1.0.0-alpha7...
查看>>
微服务(Microservices )简介
查看>>
.NET中的流
查看>>
在ASP.NET MVC 4中使用Kendo UI Grid
查看>>
SpringCloud_概述与入门
查看>>
vim精简版教程
查看>>
js判断DOM是否包含另一个DOM
查看>>
干货 | 用python3+dlib教你的程序察言观色
查看>>
Kafka的Consumer负载均衡算法
查看>>
换个姿势学数学:二次函数与拆弹部队
查看>>
React-事件机制杂记
查看>>
[LeetCode] Unique Word Abbreviation 独特的单词缩写
查看>>
[20171105]exp imp buffer参数解析.txt
查看>>