学JAVA的时候做的一道课后作业题,请打分!
Assignment:
This assignment involves writing a program, which simulates fishing. You must model the following situation: There are 4 fish species in the river, which you may catch:
Golden Perch - commonly less than 5 Kg; excellent eating, when between 1 and 2 Kg.
Silver Perch - commonly less than 7 Kg; excellent eating, when less then 1.5 Kg.
River Blackfish - Up to 5.5 kg; a superb eating fish with soft white flesh
Murray Cod - commonly less then 12 Kg; excellent eating when up to 7 Kg
For simplicity of the model, we assume that the chances to catch a fish of each of these four species are equal.
We also assume that within each species weights of fishes appear with equal chances, and range from 0 to the Maximal Weight. Maximal Weight for each of the species is specified in the species description given above.
You start fishing with an empty basket. If a caught fish¡¯s weight is within the recommended table range (specified above), you put the fish in the basket, otherwise release it. Fishes of weights less then 0.5 Kg also are released. Stop fishing as soon as the total weight of all the caught fishes exceeds 15 Kg.
To model the situation, you are supposed to use the random() method from the Math class. Fishes of different species must be implemented as objects of different classes, each extending an abstract class Fish. Whenever branching logic is required to handle fish objects of different species, you must do it polymorphically.
Task A
Create a design for your program from the following specifications:
The program requires you to create an abstract class called Fish. It can have the following class (minus constructor, which you will be required to supply).
Fish |
protected double weight; |
public abstract boolean acceptable() public abstract void setWeight(); public double getWeight() public abstract String getName() public String toString() |
The program also requires you to create four concrete classes ¨C GoldenPerch, SilverPerch, RiverBlackFish, MurrayCod, which inherit from the Fish class. These classes could have the following class diagrams.
GoldenPerch |
SilverPerch |
RiverBlackFish |
MurrayCod |
private static final String NAME = "Golden Perch"; private static final double MAX_WEIGHT = 5.0; |
private static final String NAME = "Silver Perch"; private static final double MAX_WEIGHT = 7.0;
|
private static final String NAME = "River Black Fish"; private static final double MAX_WEIGHT = 5.5;
|
private static final String NAME = "Murray Cod"; private static final double MAX_WEIGHT = 12.0;
|
public boolean acceptable() public void setWeight(); public String getName()
|
public boolean acceptable() public void setWeight(); public String getName()
|
public boolean acceptable() public void setWeight(); public String getName()
|
public boolean acceptable() public void setWeight(); public String getName()
|
Task B
Create a class Angling,£¬ which randomly creates objects of GoldenPerch, SilverPerch, RiverBlackFish, MurrayCod types, and if suitable puts them into the basket, i.e.writes them to the basket.dat file. To write objects to the file you should use writeObject() method of ObjectOutputStream class (notice, that the Fish class must implement Serializable interface).
Current information about what is going on (i.e. what kind of fish was caught, what it¡¯s weight, was it put into the basket or released) must be printed to the BlueJ terminal window.
Task C
Create a class PrintBasket, which opens the file basket.dat, then reads objects from it one by one. It should then print that information to the BlueJ terminal window. Output should look like the following:
Golden Perch: 1.40 Kg
Golden Perch: 1.17 Kg
Golden Perch: 1.00 Kg
Golden Perch: 1.65 Kg
Golden Perch: 1.08 Kg
River Black Fish: 1.46 Kg
Murray Cod: 3.14 Kg
River Black Fish: 3.83 Kg
Murray Cod: 6.55 Kg
All created classes should be in a package called yourStudentId followed by Ass1. For example, UB2000345 would create a package called UB2000345Ass1.
My Answer Sheet:
Fish.java |
package UB2000345Ass1;
import JAVA.io.*;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public abstract class Fish { protected double weight;
public Fish() { }
public abstract boolean acceptable();
public abstract void setWeight(double w);
public double getWeight() { return this.weight; }
public abstract String getName();
private void writeObject(ObjectOutputStream out) { }
public String toString() { return "This Fish's weight is:" + this.weight; } } |
GoldenPerch.java |
package UB2000345Ass1;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public class GoldenPerch extends Fish { private static final String NAME = "Golden Perch"; private static final double MAX_WEIGHT = 5.0;
public GoldenPerch(double w) { setWeight(w); }
public boolean acceptable() {
if ( (this.weight > 1) && (this.weight < 2)) { return true; } else { return false; } }
public void setWeight(double w) { this.weight = w; }
public String getName() { return NAME; }
} |
SilverPerch.java |
package UB2000345Ass1;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public class SilverPerch extends Fish { private static final String NAME = "Silver Perch"; private static final double MAX_WEIGHT = 7.0;
public SilverPerch(double w) { setWeight(w); }
public boolean acceptable() { if ( (this.weight >= 0.5) && (this.weight < 1.5)) { return true; } else { return false; } }
public void setWeight(double w) { this.weight = w; }
public String getName() { return NAME; } } |
RiverBlackFish.java |
package UB2000345Ass1;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public class RiverBlackFish extends Fish { private static final String NAME = "River Black Fish"; private static final double MAX_WEIGHT = 5.5;
public RiverBlackFish(double w) { setWeight(w); }
public boolean acceptable() { if (this.weight >= MAX_WEIGHT) { return true; } else { return false; } }
public void setWeight(double w) { this.weight = w; }
public String getName() { return NAME; }
} |
MurrayCod.java |
package UB2000345Ass1;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public class MurrayCod extends Fish { private static final String NAME = "Murray Cod"; private static final double MAX_WEIGHT = 12.0;
public MurrayCod(double w) { setWeight(w); }
public boolean acceptable() { if ( (this.weight >= 7) && (this.weight < MAX_WEIGHT)) { return true; } else { return false; } }
public void setWeight(double w) { this.weight = w; }
public String getName() { return NAME; }
} |
Angling.java |
package UB2000345Ass1;
import JAVA.io.*;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public class Angling { public float totalWeight = 0; public double rWeight; public int rFishing;
public Angling() { }
public static double getRandom() { return JAVA.lang.Math.random(); }
public Fish getRandomFish() { rFishing = (int) JAVA.lang.Math.ceil(getRandom() * 4); Fish fish = null;
switch (rFishing) { case 1: fish = new GoldenPerch(rWeight); break; case 2: fish = new SilverPerch(rWeight); break; case 3: fish = new RiverBlackFish(rWeight); break; case 4: fish = new MurrayCod(rWeight); break; } return fish; }
public String doFishing() { int i = 0; String str = "Begin Fishing:\n"; do { i++; rWeight = JAVA.lang.Math.ceil(getRandom() * 120) / 10; Fish fish = getRandomFish();
if (fish.acceptable()) { totalWeight += rWeight; str += i + "." + fish.getName() + ":" + rWeight + "Kg,put in basket.\n"; } else { str += i + "." + fish.getName() + ":" + rWeight + "Kg,release it.\n"; } } while (totalWeight < 15);
str += "\nTotal weight:" + totalWeight + "Kg,bigger than 15Kg,Stop Fishing.\n"; return str; }
public void writeFile(String str) { try { FileOutputStream f = new FileOutputStream("basket.dat"); ObjectOutputStream s = new ObjectOutputStream(f); s.writeObject(str); s.close(); } catch (IOException e) { e.printStackTrace(); } }
public static void main(String[] args) { Angling angling = new Angling(); angling.writeFile(angling.doFishing()); } } |
PrintBasket.java |
package UB2000345Ass1;
import JAVA.io.*;
/** * <p>Title: Fish</p> * <p>Description: Fishing Class</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: Longware Studio</p> * @author Longware * @version 1.0 */
public class PrintBasket { public String strFileName = "basket.dat";
public PrintBasket() { }
public void readFile() { try { String text = null;
FileReader fr = new FileReader(strFileName); BufferedReader br = new BufferedReader(fr); text = new String(); while ( (text = br.readLine()) != null) { System.out.println(text); }
br.close(); fr.close(); } catch (IOException e) { System.out.println("File Read Error!"); } }
public static void main(String[] args) { PrintBasket printBasket1 = new PrintBasket(); printBasket1.readFile(); }
} |
[ END ]
分享到:
相关推荐
在本题目中,我们面临的是一个名为"employeeJAVA作业"的编程练习,主要涉及Java语言。根据描述,这个作业是关于“应聘者”的,暗示我们需要编写一个与员工或应聘者管理相关的程序。在这个作业中,可能需要实现一些...
每一道课后习题都对应一个具体的知识点,通过解题,你不仅可以巩固理论知识,还能提升编程技能。对于初学者来说,这是一份极佳的学习资源,可以帮助你在实践中不断进步。在学习过程中,遇到不理解的地方,可以对照...
在本Java第六章作业中,我们探讨了两个经典数学问题,分别是“鸡兔同笼”问题和基于马克思手稿的趣味数学挑战。这两个问题都属于线性方程组的应用,旨在锻炼我们的逻辑思维和编程能力。 首先,让我们来解决“鸡兔同...
描述中提到的最后一道作业题涉及到文件压缩与解压缩,可能需要同学们使用到Java的ZipEntry和ZipFile类。通过ZipEntry,可以创建或访问ZIP文件中的单个条目,而ZipFile类则允许打开现有的ZIP文件,以便读取其中的内容...
【标题】:“澳大利亚停车场作业题”揭示了这是一道与编程相关的作业,主要涉及Java语言。这可能是一个软件开发项目,旨在模拟一个真实的停车场系统,包括车辆的进出管理、停车位的分配、计费规则的实现等功能。在...
Spring 框架是一种流行的 Java 应用程序框架,提供了许多强大的功能,例如依赖注入、面向切面编程等。本文将对 Spring 框架选择题进行解析,并对每个问题进行详细的解释。 1. Spring 中实现 DI 方式包括: 依赖...
首先,我们来看实验的第一部分,涉及书本35页的作业题。其中一道题目要求根据输入的数值x,计算对应的y值。这是通过使用条件运算符实现的。源代码如下: ```java if(x) y=-1+2*x; if(x==0) y=-1; else y=-1+3*x; ``...
笔试面试题 一道面试题关于信息系统的问答和注意事项 【项目资源】:包含前端、后端、移动开发、操作系统、人工智能、物联网、信息化管理、数据库、硬件开发、大数据、课程资源、音视频、网站开发等各种技术项目的...
每一道题目都旨在检验学生对Java语法的理解,并锻炼他们的逻辑思维能力。 作业答案部分不仅给出了正确的代码实现,还可能包含了解题思路、关键知识点解析以及可能遇到的陷阱和错误分析。这样的解答方式有助于学生...
【标题】:“猴子摘桃”是一道经典的编程问题,它源于中国的民间故事,常用于考察程序员的逻辑思维和算法设计能力。在这个问题中,猴子每天会吃掉一定数量的桃子,同时还会从树上摘下一部分存起来。具体规则是:第一...
【jsp网站规划与网页设计试题】是一份针对JSP(JavaServer Pages)技术的期末考试资料,主要包含选择题及对应的答案,旨在测试学生对于JSP网页开发、服务器端脚本编写以及动态网页设计的理解与应用能力。这份资料是...
**背景介绍**:鸡兔同笼问题是一道经典的数学题,题目要求根据头和脚的数量推算出鸡和兔子各有多少只。 **问题分析**: - 给定头数为40,脚数为100。 - 假设鸡的数量为`ji`,兔子的数量为`tu`。 - 则鸡和兔子的总脚...
- 一道常见的排序算法题目可能要求考生写出快速排序或归并排序的实现。快速排序是一种平均时间复杂度为O(n log n)的排序方法,通过选取基准元素并分治策略进行排序。归并排序则利用了分治法,将数组分成两半,分别...
首先,我们来详细分析每一道题目。 第一题主要关注的是浏览器的刷新行为及其对缓存的影响。当用户在地址栏输入网址并按下回车时,浏览器可能会缓存网页内容以提高加载速度。F5刷新会根据浏览器的缓存策略决定是否从...
根据提供的信息,我们可以详细分析每一道题目所涉及的知识点,并对每个选项进行解析。下面将逐一解释这些题目。 ### 第一题 **题目**: 关于上述代码编译运行的结果的是:()。 ``` 1public static void main...
本题目聚焦于“计算机英语课后第四题”,这通常指的是学生在学习计算机英语课程时遇到的一道练习题,旨在检验和提升学生对计算机相关词汇和概念的理解与应用。 【描述】:“计算机英语课后第四题翻译好好好好好好好...
30. **增加了一道间接传递的时间** - 指在某些操作过程中引入额外的延迟时间。 31. **高速缓冲存储器、主存储器(内存)、辅助存储器(外存)** - 这些术语分别指不同类型的存储器,按照访问速度和容量划分。 ...
【京东2018秋招售后管理类笔试题及答案】这份资料主要包含了京东公司在2018年秋季招聘售后管理岗位的笔试题目和答案,适用于准备应聘该类职位的求职者进行复习和自我测试。题目涉及了多个方面,包括个人价值观、人际...
学习者应积极参与每一道作业题,不断挑战自我,提高算法设计和分析能力。 总结,普林斯顿大学的算法课程是深入学习算法的宝贵资源,不仅涵盖了理论知识,还提供了丰富的实践环节。通过这个课程,学习者不仅可以熟练...
106题是LeetCode上的一道经典二叉树问题,要求根据给定的中序遍历(inorder)和后序遍历(postorder)序列来构造二叉树。二叉树的遍历有三种基本方式:前序遍历(root -> left -> right),中序遍历(left -> root -...