I had been creating 5 files and I kept hitting the wall. Hope that you will be able to help me pinpoint the problems. (I am not an programmer by the way.) I had been researching for more details on those problems, no luck.
Enclosed are 5 files that I had created. Hope to hear from you soon because I need to turn them in next week as an final project at my college.
The ParkCar class: This class show simulate a parked car. The class' responsibilities are
To know the car's make, model, color, license number, and the number of minutes that the car has been parked.
The ParkingMeter class: This class should simulate a parking meter. The class' responsibilities are
To know the number of minutes of parking times that has been purchased.
The ParkingTicket class: This class should simulate a parking ticket. The class' responsibilities are
To report the make, model, color, and license number of the illegally parked car.
To report the amount of the fine, which is $25 for the first hour or part of an hour that the car is illegally parked, plus $10 for every additional our or part of an hour that the car is illegally parked.
To report the name and badge number of the police officer issuing the ticket
The PoliceOfficer Class: This class should simulate a plice officer inspecting parked cars. The class' responsibilities are
To know the police officer's name and badge number.
To examine a ParkedCar object and a ParkingMeter object, and determine whether the car's time has expired.
To issue a parking ticket (generate a ParkingTicket object) if the car's time has expired.
public void inspectParkedCar(int cm, int pm, int mins)
{
cm = car.getParkedMinutes();
pm = meter.getPurchasedMinutes();
mins = cm - pm;
if (mins < 0)
if (mins > 0 && mins <= 60)
fine = 25;
else
fine = 25 + ((10 * mins) / 60);
//ParkingTicket ticket= ParkingTicket(fine, car, meter);
}
public PoliceOfficer(String on, int bn, ParkedCar pc, ParkingMeter pm, ParkingTicket ticket)
public PoliceOfficer(PoliceOfficer original)
Here's your error:
Quote ...
MeterTest.java:19: cannot find symbol
symbol : constructor PoliceOfficer(java.lang.String,int,ParkedCar,ParkingMeter)
location: class PoliceOfficer
PoliceOfficer cop = new PoliceOfficer("Raby", 1234, car, meter);
None of your constructors take four arguments. The closest is this:
Will it be easy for you if I post the classes instead attachments?
It's not a bad idea to post a zip file with all the java files, and in addition you can post/describe any changes and current problems. If you post the zip file, it's a quick download, then we can unzip it as is and compile it rather than a whole bunch of cut and pastes and there's less to keep track of. Post the line itself as well as the error message and a description.
Either the thread starter or a moderator has marked this thread as solved. You can most likely trust the responses and answers given. There is most likely no reason for any further responses to be posted here. If you have a related question, please start a new thread in this forum instead.
This thread is more than three months old
No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.