Question: Create a class named BloodData that includes fields that hold a blood type (the four blood types are O , A , B , and
Create a class named
BloodDatathat includes fields that hold a blood type (the four blood types are O, A, B, and AB) and a Rh factor (the factors are + and –). Create a default constructor that sets the fields to O and +, and an overloaded constructor that requires values for both fields. Include get and set methods for each field.Create a class named
Patientthat includesid,age, andbloodDatafields. Provide a default constructor that sets the ID number to 0, the age to 0, and theBloodDatavalues to O and +. Create an overloaded constructor that provides values for each field. Also provide get methods for each field.
The TestBloodData.java and TestPatient.java files have been provided to test your implementation of each class.
Step by Step Solution
3.47 Rating (150 Votes )
There are 3 Steps involved in it
1a package Blood public class BloodData privateString bloodType private char rhFactor publicBloodData bloodType O rhFactor public BloodDataString type ... View full answer
Get step-by-step solutions from verified subject matter experts
