Max Double
Define a class named Max
which stores the maximum from a series of provided Double
values.
Max
should define a primary constructor that accepts a Double
that sets the initial value.
You should also provide two other instance methods:
add
: accepts a singleDouble
and updates the maximum if necessary, but does not return a valuemax
: returns the current maximum value
Once your class works correctly it should behave like this:
Your Max
class should not expose any state publicly.
You may also not store passed values in an array.
This is incorrect and will prevent your class from recording the maximum of a large number of values!