Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Project 2: Counter Define a class called Counter that will be used to count things. An object of this class records a count that is
Project 2: Counter
Define a class called Counter that will be used to count things. An object of this class records a count that is a nonnegative integer. The only method that can set the counter is the one that sets it to 0. Include the following methods:
- toString method
- reset the count to 0
- returns the current count value
- equals method
- increment the count by 1
- decrement the count by 1, should not allow the value of the count to become negative
Create a separate tester class to test all the methods in your class definition.
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