Search:

Type: Posts; User: DarkestLord

Search: Search took 0.09 seconds.

  1. Replies
    6
    Views
    1,082

    Re: Trouble adding an object.

    I see...I'm also trying to list equipment, add equipment, and remove equipment. The equipment class looks like this:


    public class Equipment
    {
    private String name;
    private int weight;
    public...
  2. Replies
    6
    Views
    1,082

    Re: Trouble adding an object.

    I see...but how would I put it in the backpack from the method? This is what I have so far:



    public class Backpack
    {
    private Canteen theCanteen;
    private Equipment[] theEquipment;
    Backpack()...
  3. Replies
    6
    Views
    1,082

    Trouble adding an object.

    I made two classes for my "Backpack". You may ignore these if you wish.


    /**
    * A storage space for items
    *
    * @author Erik
    * @version 1
    */
    public class Canteen
Results 1 to 3 of 3