Chapter 3: Problem 5
What's the purpose of keyword new? Explain what happens when you use it.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Chapter 3: Problem 5
What's the purpose of keyword new? Explain what happens when you use it.
These are the key concepts you need to understand to accurately answer the question.
All the tools & learning materials you need for study success - in one app.
Get started for freeWhat is a default constructor? How are an object's instance variables initialized if a class has only a default constructor?
(Date Class) Create a class called Date that includes three instance variables - a month (type int \(),\) a day (type int) and a year (type int). Provide a constructor that initializes the three instance variables and assumes that the values provided are correct. Provide a set and a get method for each instance variable. Provide a method displayDate that displays the month, day and year separated by forward slashes \((/) .\) Write a test application named DateTest that demonstrates class Date's capabilities.
Explain why a class might provide a set method and a get method for an instance variable.
Explain the purpose of an instance variable.
A health care issue that has been in the news lately is the computerization of health records. This possibility is being approached cautiously because of sensitive privacy and security concerns, among others. [We address such concerns in later exercises.] Computerizing health records could make it easier for patients to share their health profiles and histories among their various health care professionals. This could improve the qualiry of health care, help avoid drug conflicts and erroneous drug prescriptions, reduce costs and, in emergencies, could save lives. In this exercise, you'll design a "starter" Heal thProfile class for a person. The class attributes should include the person's first name, last name, gender, date of birth (consisting of separate attributes for the month, day and year of birth), height (in inches) and weight (in pounds). Your class should have a constructor that receives this data. For each attribute, provide set and \(g e t\) methods. The class also should include methods that calculate and return the user's age in years, maximum heart rate and target-heart-rate range (see Exercise 3.16 ), and body mass index (BMI; see Exercise 2.33 ). Write a Java application that prompts for the person's information, instantiates an object of class Heal thProfile for that person and prints the information from that object- including the person's first name, last name, gender, date of birth, height and weight- then calculates and prints the person's age in years, BMI, maximum heart rate and target-heart-rate range. It should also display the BMI values chart from Exercise 2.33
What do you think about this solution?
We value your feedback to improve our textbook solutions.