Quote from: Brand on 20.12.2009, 17:26:31Quote from: dEVIANT on 20.12.2009, 05:03:33Quote from: Brand on 20.12.2009, 04:53:34
Chlapci, co spekulujete . V BackpackImpl je predsa metoda public Item getItem(String itemName) s takymto kodom:
public Item getItem(String itemName)
{
for (Item item : this.items)
{
if (itemName.trim().equalsIgnoreCase(item.getName()))
{
return item;
}
}
return null;
}
potom v metode public Item remove(String itemName) staci mat toto a nic neriesite :
public Item remove(String itemName)
{
Item item = null;
if (getItem(itemName) != null)
{
item = getItem(itemName);
this.items.remove(getItem(itemName));
}
return item;
}
Hmm ta ty si strašny pán!!...teba chcem za učitela...
ako sorry, len som chcel poradit, nic v zlom, je to celkom jednoduche a pochopitelne riesenie.
Veď v pohode...mňa neber vážne...dík