Question: Java: Create a class called Hotel that includes: numberOfRooms (int). It can be accessed in any class. In addition, it's value cannot be changed during
Java: Create a class called Hotel that includes:
numberOfRooms (int). It can be accessed in any class. In addition, it's value cannot be changed during the run, and this value will be shared by all objects.
numberOfReservedRooms (int). It can be accessed by this class only, and its value will be shared by all objects.
numberOfAvailableRooms (int). It can be accessed by this class only, and its value will be shared by all objects.
A constructor receives the numberOf WantedRoomsToReserve and:
Increase the reserved rooms
Decrease the available rooms
Constructor with no-arg to invoke the first constructor and:
Increase the reserved rooms by 1.
Decrease the available rooms by 1.
Getters for the required variables.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
