Question: Java language Write the definition of a class Counter containing: An instance variable named counter of type int . An instance variable named limit of

Java language

  1. Write the definition of a class Counter containing:
    1. An instance variable named counter of type int.
    2. An instance variable named limit of type int.
    3. A static int variable named nCounters which is initialized to 0.
    4. A constructor taking two int parameters that assigns the first one to counter and the second one to limit. It also adds one to the static variable nCounters.
    5. A method named increment. It does not take parameters or return a value; if the instance variable counter is less than limit, increment just adds one to the instance variable counter.
    6. A method named decrement that also doesn't take parameters or return a value; if counter is greater than zero, it just subtracts one from the counter.
    7. A method named getValue that returns the value of the instance variable counter.
    8. A static method named getNCounters that returns the value of the static variable nCounters.

Write a Test program to test the Counter class method.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!