Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Print out a list which should show a room number and rate but when i use System.out.println(rooms); I get [Room@84af5, Room@10ad950, R..m@1339bd... instead. correct this.

Print out a list which should show a room number and rate but when i use System.out.println(rooms); I get [Room@84af5, Room@10ad950, R..m@1339bd... instead.  correct this.

 

import java.util.ArrayList;

/**
* Write description of class Hotel here.
*
*/
public class Hotel
{
   // (b)
   private ArrayList rooms;
   private String name;

   /**
    * (c) Constructor for objects of class Hotel
    */
   public Hotel(String aName)
   {
       name = aName;
       rooms = new ArrayList<>();
   }

   /**
    * (d) Adds some unoccupied test rooms to the hotel
    */
   public void addRooms()
   {
       int i = 10;
       while (i < 19) {
           String number = "" + i;
           double rate;

           if(i % 3 == 1) {
               number += "A";
               rate = 100;
           }
           else if (i % 3 == 2) {
               number += "B";
               rate = 180;
           }
           else
           {
               number += "C";
               rate = 250;
           }

           Room r = new Room("", number, rate);
           rooms.add(r);
           i++;
       }
              System.out.println(rooms);
   }


}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

Answer The issue youre encountering is that when you print out the rooms list using Systemoutprintln... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Entrepreneurship

Authors: Andrew Zacharakis, William D Bygrave

5th Edition

1119563097, 9781119563099

More Books

Students also viewed these Operating System questions

Question

What is the use of bootstrap program?

Answered: 1 week ago

Question

What is a process and process table?

Answered: 1 week ago

Question

What is Industrial Economics and Theory of Firm?

Answered: 1 week ago

Question

Is the timing right to launch your venture?

Answered: 1 week ago

Question

How do our funders really view us? How do we know?

Answered: 1 week ago