Classes for Hospital

Report a typo

In this problem, you need to develop a class hierarchy for the Hospital System.

The root of the hierarchy is the Person class. It represents all employees and patients of the Hospital. Doctors are a kind of employee.

Please, do not make the classes public.

Write a program in Java 17
class Person {

}

class Employee {

}

class Doctor {

}

class Patient {

}
___

Create a free account to access the full topic