I have created a Hostel class and a Room class, the Hostel class contains an ArrayList rooms, one value in this Arraylist is the Boolean available. In the Hostelclass i have created an if statement which is supposed to show any entry in the ArrayList where boolean available is true but instead it shows all values including those where available was false, but has now been changed to true. can anyone tell me where i have gone wrong.
public Room showAvail()
{
String theString = "Available Rooms";
if (Room.available == true)
for (Room room : rooms)
{
theString = theString + room.getRoomData() + "\n";
System.out.println(theString);
}
return null;
}
voidinstead ofRoomas a return type. – Eng.Fouad Nov 12 '11 at 14:22