Question: Person.java : Problem Statement (Summary): You are going to develop a simple application for Hotels. Hotel is, actually, a Building, with some extra features. Each

Person.java :

Problem Statement (Summary): You are going to develop a simple application for Hotels. Hotel is, actually, a Building, with some extra features. Each hotel as a couple of rooms. Each room, has some features, including its own calendar, to keep its reservation records. To implement and test this system, you must create six Java classes as follows: Class Person (4 marks): Open the Java file Person.java that is provided. Later on, you must use this class in Reservation and Hotel classes. Complete this Java class using the following specifications: Every person has first and last names. (1 mark) A constructor, which gets two parameters, first and last names, and initializes the corresponding instance variables. (1 mark) Override the toString method, such that it returns first and last names with one space in between. (2 marks) public class Person { }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
