Nathan Hall 0dc552c8b6 Talking Pets FINISHED | пре 6 година | |
---|---|---|
src | пре 6 година | |
.gitignore | пре 7 година | |
README.md | пре 7 година | |
pom.xml | пре 6 година |
In this lab you will practice creating a simple Java program designed to make use of polymorphic design.
Select a partner from your tribe; You will each write tests for the requirements below, but your partner must develop against your tests and vice versa. Be sure to use the io.zipcoder.pets
package for your Pet classes to allow tests to execute properly.
Hint: An easy way to achieve this is for each partner to set up a GitHub repository for this lab, and add the other partner as a collaborator with write access (in the repository settings).
Create a program that asks the user how many pets they have. Once you know how many pets they have, ask them what kind of pet each one is, along with each pet's name. For now your program should just hold onto the user input and print out the list at the end; we'll modify this in part 3.
Create a Pet class, and a subclass for each type of pet that you want your program to support. Your classes should follow the following requirements:
speak
method that each subclass overrides.name
field with setters and getters.Use the tests provided as examples to write your own tests for other supported types of pets.
Modify your program from part 1 to use the Pet class and its subclasses. Keep a list of the pets your user lists and at the end of the program print out a list of their names and what they say when they speak.