473,395 Members | 1,730 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Beginner stuck on coursework with HASHMAP's!

2
This is the car dealership object relating to the coursework, there is also a separate object named car that i think i need to link to. The problem is on the addcar() method. Any help would be greatly appreciated.

/** A CarDealer object represents a business that buys and resells used cars */
import java.util.ArrayList;
import java.util.HashMap;
public class CarDealer
{
private int dayNumber; // Day number from start of operation of business

// HashMap objects are used to provided easy lookup of cars using their registrations
// Each HashMap entry comprises a car registration as key, and the corresponding Car object
private HashMap<String, Car> prepStock; // To hold cars being prepared for sale
private HashMap<String, Car> saleStock; // To hold cars on sale
private ArrayList<Sale> Sold; // An ArrayList field is needed, to hold the Sale objects created as sales are made

/** Constructor */
public CarDealer()
{
dayNumber = 1;
Sold = new ArrayList<Sale>();
prepStock = new HashMap<String, Car>();
saleStock = new HashMap<String, Car>();
}

public void advanceDate()
{
dayNumber++;
System.out.println("Day is now: " + dayNumber);
}

/** Note: Methods addCar, putOnSale, reducePrice and sellCar should print a confirmation
* message, or an error report if the operation cannot sensibly be performed.
*/

/** Method to be called when the dealer has acquired a car.
* A Car object representing the car is added to the preparation stock.
*/
public void addCar(String reg, String model, int paid)
{ // Replace this comment with your code
prepStock.put(reg, model, paid);
}

CAR OBJECT

/** An object of class Car represents a car that the dealer has bought
* and is preparing for sale, or has on sale, or has sold.
*/
public class Car
{
private String registration; // Unique UK vehicle identification
private String model; // What kind of car
private int paid; // How much the dealer paid
private int askingPrice; // "Windscreen" price

/** Constructor - assumes that when a Car object is created, the
* asking price is not decided and will be set later
*/
public Car(String reg, String model, int paid)
{
registration = reg;
this.model = model;
this.paid = paid;
}

public String getRegistration()
{
return registration;
}

public String getModel()
{
return model;
}

public int getPaid()
{
return paid;
}

/** To set a car's asking price to a specified sum */
public void setAskingPrice(int price)
{
askingPrice = price;
}

public int getAskingPrice()
{
return askingPrice;
}
}
Apr 16 '07 #1
6 2911
r035198x
13,262 8TB
This is the car dealership object relating to the coursework, there is also a separate object named car that i think i need to link to. The problem is on the addcar() method. Any help would be greatly appreciated.

/** A CarDealer object represents a business that buys and resells used cars */
import java.util.ArrayList;
import java.util.HashMap;
public class CarDealer
{
private int dayNumber; // Day number from start of operation of business

// HashMap objects are used to provided easy lookup of cars using their registrations
// Each HashMap entry comprises a car registration as key, and the corresponding Car object
private HashMap<String, Car> prepStock; // To hold cars being prepared for sale
private HashMap<String, Car> saleStock; // To hold cars on sale
private ArrayList<Sale> Sold; // An ArrayList field is needed, to hold the Sale objects created as sales are made

/** Constructor */
public CarDealer()
{
dayNumber = 1;
Sold = new ArrayList<Sale>();
prepStock = new HashMap<String, Car>();
saleStock = new HashMap<String, Car>();
}

public void advanceDate()
{
dayNumber++;
System.out.println("Day is now: " + dayNumber);
}

/** Note: Methods addCar, putOnSale, reducePrice and sellCar should print a confirmation
* message, or an error report if the operation cannot sensibly be performed.
*/

/** Method to be called when the dealer has acquired a car.
* A Car object representing the car is added to the preparation stock.
*/
public void addCar(String reg, String model, int paid)
{ // Replace this comment with your code
prepStock.put(reg, model, paid);
}

CAR OBJECT

/** An object of class Car represents a car that the dealer has bought
* and is preparing for sale, or has on sale, or has sold.
*/
public class Car
{
private String registration; // Unique UK vehicle identification
private String model; // What kind of car
private int paid; // How much the dealer paid
private int askingPrice; // "Windscreen" price

/** Constructor - assumes that when a Car object is created, the
* asking price is not decided and will be set later
*/
public Car(String reg, String model, int paid)
{
registration = reg;
this.model = model;
this.paid = paid;
}

public String getRegistration()
{
return registration;
}

public String getModel()
{
return model;
}

public int getPaid()
{
return paid;
}

/** To set a car's asking price to a specified sum */
public void setAskingPrice(int price)
{
askingPrice = price;
}

public int getAskingPrice()
{
return askingPrice;
}
}
1.) Use code tags next time when posting code.
2.)What problems are you having with the addCar method and what ideas do you have for it?
Apr 17 '07 #2
JosAH
11,448 Expert 8TB
Expand|Select|Wrap|Line Numbers
  1. public void addCar(String reg, String model, int paid)
  2.     { // Replace this comment with your code
  3.        prepStock.put(reg, model, paid);
  4.     }
Your HashMaps take a String (the registration code for the car) and a Car.
Your method supplies you with the registration code, but not with a Car object.
You have to create a new Car first given the other parameter values.

kind regards,

Jos
Apr 17 '07 #3
bumrag
2
Thankyou for your help guys, Ive tried to create a new Car object but at the moment all i seem to be doing is sitting here staring at a blank screen, Any help would be greatly APPRECIATED, i know i have to initialise a new Car object, i have tried using,

Car C = new Car();

However, it says it cannot find symbol constructor. Has anyone ideas of how to resolve this?

martin
Apr 17 '07 #4
JosAH
11,448 Expert 8TB
Thankyou for your help guys, Ive tried to create a new Car object but at the moment all i seem to be doing is sitting here staring at a blank screen, Any help would be greatly APPRECIATED, i know i have to initialise a new Car object, i have tried using,

Car C = new Car();

However, it says it cannot find symbol constructor. Has anyone ideas of how to resolve this?

martin
But you wrote this constructor yourself didn't you?
Expand|Select|Wrap|Line Numbers
  1. public Car(String reg, String model, int paid)
As far as I can see it's the only constructor defined in your class. Hint: compare
its parameters to the parameters of the addCar( ... ) method.

kind regards,

Jos
Apr 18 '07 #5
r035198x
13,262 8TB
Thankyou for your help guys, Ive tried to create a new Car object but at the moment all i seem to be doing is sitting here staring at a blank screen, Any help would be greatly APPRECIATED, i know i have to initialise a new Car object, i have tried using,

Car C = new Car();

However, it says it cannot find symbol constructor. Has anyone ideas of how to resolve this?

martin
You create the Car using a constructor in the Car class. You do not have one that takes no arguments (Car()), so use the one you have. You can read this for more details on constructors.
Apr 18 '07 #6
As your Car class don't have a no argument Constructor, so by using this statement Car c=new Car(), obviously you'll get the Compilation Error, so you better to Create the Car Object by using Constructor you have i.e. a three argument constructor.
Apr 19 '07 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: dougjrs | last post by:
I have a HashMap that is storing form data that will later be inserted into a database. I have been able to create the HashMap just fine, but I wanted to be able to take my HashMap and just "dump"...
1
by: Christian Gollwitzer | last post by:
Hi, I'm trying to loop over the elements in a hashmap of the STL-implementation by SGI. The point is, that because the key/value pair is stored as std::pair in the COntainer, the code becomes...
4
by: David | last post by:
Hi, I have created the following HashMap class. class HashMap: public hash_map<string, string, HashString, HashStringCompare> { public: HashMap(): hash_map<string, string, HashString,...
2
by: xor | last post by:
I'm doing up a school project using java, and am a little new to it (I've worked with other languages for years though). I've seen code posted by the instructor using HashMap like this... ...
1
by: m2kamp | last post by:
Working on a project for my class and spent too long searching around on the internet trying to find the right answer... Basically its a simple vending machine program using a hashmap. So i...
4
by: panos100m | last post by:
Hi these are the conents of my hashmap printing out the entrySet. entrySet1: OrderDate=10/30/2007, entrySet2: Level_0={Item_0={ItemTotal= 3.99, ItemName=test® in, ShipDate=10/31/2007,...
15
by: lbrtchx | last post by:
Hi, ~ I have found myself in need of some code resembling a Hashmap ~ This is easily done in Java this way: ~ import java.util.*; // __ public class JMith00Test{
3
dlite922
by: dlite922 | last post by:
I could have this done in php in three lines of code but in Java here's what I need to do: English Looping through list of words I call a function that returns a HashSet of movie titles that...
1
by: evelina | last post by:
Hello, I need help. I have the following hashmap: HashMap<HashMap<Dimension, Integer>, String> mapList = new HashMap<HashMap<Dimension, Integer>, String>(); I want to extract Dimesion from the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.