Search:

Type: Posts; User: Ian_dude

Search: Search took 0.12 seconds.

  1. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Thanks for the class/subclass answer.
    The loop code is in a post above (post 21)

    But here is the code and I added a add1Ingredient() method to the recipe which updates the cost as well.
    I also...
  2. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Norm,

    Post 5 "I think you need to establish your abstractions and classes properly. An Ingredient certainly doesn't extend Recipe. A Recipe is composed of ingredients. You might consider...
  3. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    I am so happy Norm:

    public static double calculateCostOfRecipe(HashMap<Ingredient, Double> recipe){
    // loops through the hashmap and multiplies the amount and unit price
    double...
  4. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Norm,

    Yes it is what you are talking about in post #4.
    You may as well ignore the code I have for the 2 attempts at creating the method called "calculateRecipeCost"
    since they don't work and I...
  5. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Gozzy,

    I am not very experienced with Java as you can tell but I though I had it well specked out. But obviously not.
    I acually have 2 enums in my Ingredient Class
    public enum UnitPurchased {...
  6. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Norm,

    In my original post above I copied the code for the Ingredient Class and for the Recipe Class and for the Main which uses the classes for now. I tried to write a for each loop in several...
  7. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    I though I had the design figured out but I am new at this and most likely my design has some serious flaws.

    Right now as it stands the ingredient lets call it avocado (since I have it in the...
  8. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Norm,
    The program should be able to add ingredients.
    The program will need to "know" if the ingredient exists and if it does then it does need to access the ingredient by name (I think that's the...
  9. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    I will look at the interface vs class (since I don't understand that very well).

    So the hashmap is an element of the recipe instance which holds the ingredient (so I'm guessing I could access all...
  10. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Norm,

    Yes, although when you say "get the type and amount of each ingredient"
    I would say get the costPerUnit (since the Ingredient instance has a costPerUnit) and amount needed for the recipe...
  11. [SOLVED] Re: Trying to iterate through hashmap of objects from a class I created

    Norm,
    Thank you for the answer.

    I will look into the varargs for sure.
    Do you have any input on the question on how to get to the ingredient say for example "avocado.costPerUnit" from having...
  12. [SOLVED] Trying to iterate through hashmap of objects from a class I created

    I am trying to calculate the cost of a "Recipe" object which contains a hashmap<Ingredient, Double>
    I have created the Ingredient class which contains pricePerUnit as one of its values.
    The Double...
Results 1 to 12 of 12