Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Develop the class called ChelseaFanClub. However, remember that this class maintains a collection of objects of interest. These will be the 3 2 players of
Develop the class called ChelseaFanClub.
However, remember that this class maintains a collection of objects of interest. These will be
the players of the first team, their ages and the number of games they've played.
i: A map whose keys are instances of the object of interest class and whose values are a list of
String or Integer.
At most one other field as described in your scenario.
ii: A constructor to initialise these fields. The map will be empty to begin with.
b :Then add the following methods to the class called ChelseaClub:
method name Brief description parameters needed?
i A method called AddPlayer: Adds or updates an entry in the map for an object of
interest. Yes
ii A method called Clear: Clears all entries from the map. No
iii. A method called populate: Clears the map then creates different example entries
suitable for testing. The method should not require any user input. No
iv A method called RemovePlayer: Removes an entry from the map. The method
should return true or false depending on whether the entry was found or not. Yes
v A method called TotalNumberOfGoals. Returns a subset of objects of interest
according to some criteria about the values in the map. Yes
vi A method called AveragePlayerGoals. Returns a numeric value based on the values
of all entries in the map. No
vii. A method called FirstTeamMap: Displays the contents of the map, nicely formatted.
This method will not gain full marks if it merely uses the toString method of the
values. No
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started