Search:

Type: Posts; User: TheEvilCouncil

Search: Search took 0.24 seconds.

  1. Replies
    1
    Views
    1,473

    Help with conversion

    Okay, I need to read in a variable from a user for an object which I defined, called CatalogItem. I don't know how I can convert the String which I read in from the user into a CatalogItem object.
    ...
  2. Replies
    2
    Views
    986

    Re: Need help

    Oh man I totally missed that, thank you so much!
  3. Replies
    2
    Views
    986

    Need help

    Here's my code

    public void add(int newID, String newDesc, double newCost)
    {
    catalogItems.trimToSize();
    CatalogItem copy = new CatalogItem(newID, newDesc, newCost);
    for(int i = 0; i <...
Results 1 to 3 of 3