Question
Modify the FitnessTracker class so that the default constructor calls the three-parameter constructor. Use TestFitnessTracker2 to test the new version of the class. Grading Write
Modify the FitnessTracker class so that the default constructor calls the three-parameter constructor. Use TestFitnessTracker2 to test the new version of the class. Grading Write your Java code in the area on the right. Use the Run button to compile and run the code. Clicking the Run Checks button will run pre-configured tests against your code to calculate a grade. Once you are happy with your results, click the Submit button to record your score.
FitnessTracker2.java
import java.time.*; public class FitnessTracker2 { String activity; int minutes; LocalDate date; public FitnessTracker2() { } public FitnessTracker2(String activityParam, int minutesParam, LocalDate dateParam) { } public String getActivity() { } public int getMinutes() { } public LocalDate getDate() { } }
TestFitnessTracker2.java
import java.time.*; public class TestFitnessTracker2 { public static void main(String[] args) { FitnessTracker2 exercise = new FitnessTracker2();
System.out.println(exercise.getActivity() + " " + exercise.getMinutes() + " minutes on " + exercise.getDate());
// code to test constructor added for exercise 3b LocalDate date = LocalDate.of(2020, 8, 20); FitnessTracker2 exercise2 = new FitnessTracker2("bicycling", 35, date);
System.out.println(exercise2.getActivity() + " " + exercise2.getMinutes() + " minutes on " + exercise2.getDate()); } }
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