8.5 Time
Class Case Study: Overloaded Constructors
As you know, you can declare your own constructor to specify how objects of a class should be initialized. Next, we demonstrate a class with several overloaded constructors that enable objects of that class to be initialized in different ways. To overload constructors, simply provide multiple constructor declarations with different signatures.
Class Time2
with Overloaded Constructors
The default constructor for class Time1
(Fig. 8.1) initialized hour, minute
and second
to their default 0
values (which is midnight in universal time). The default constructor does not enable the class’s clients to initialize the time with specific nonzero values. Class Time2
(Fig. 8.5) contains five overloaded ...
Get Java How to Program (early objects), 9/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.