Question: Suppose that you are going to create an object used to count the number of people in a room. We know that the number of
Suppose that you are going to create an object used to count the number of people in a room.
We know that the number of people in the room can never be negative. Create a
RoomCounter class having three public methods:
- addPerson—adds one person to the room
- removePerson—removes one person from the room
- getCount—returns the number of people in the room
If removePerson would make the number of people less than zero, throw a NegativeCounterException.
Step by Step Solution
3.37 Rating (181 Votes )
There are 3 Steps involved in it
public class RoomCounter private int count Creates a new i... View full answer
Get step-by-step solutions from verified subject matter experts
