Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a Java class with the following properties and methods: Calendar class: The class and file names are both Calendar. Properties: - - -
Create a Java class with the following properties and methods: Calendar class: The class and file names are both Calendar. Properties: - - - - ArrayList called years of the Integers from 1910 to 2025 (Integers) Array called months of all twelve month names (Strings: e.g. "January", "February", ...) ArrayList called days of the Integers 1 to 30, inclusive (Integers) HashMap called dates whose key is an Integer and value is a Date (see below) Constructor: The constructor must do the following: Used nested loops (loop inside a loop inside a loop) as follows: Use a for-each loop to iterate through the years Use a for loop to iterate through the months Use an iterator to iterate through the days ...to create a Date object for every date from January 1, 1910 until December 30, 2025 (each month will have 30 days)... and store each Date object in theHashMap datesinstance variable. January 1 1910 has key 1, January 2 1910 has key 2, ..., all the way up to December 30 2025 which has key 41760. Methods: maw printCalendar() prints each Date in the calendar by using the dates object's keySet() method with a for-each loop, calling the Date's getDate() method.
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