クラスがあるとします。アイテムといいます。
public class Item {
public boolean usable = false;
protected boolean usage;
public int id;
public String name;
public String type;
public int stacknum;
protected int tier;
public String rarity;
boolean equipable;
boolean equiped;
String altName;
public Item(int idIn, String nameIn, String typeIn) {
usage = false;
id = idIn;
name = nameIn;
type = typeIn;
stacknum = 0;
tier = 0;
rarity = "Common";
}//end of constructor
}//end of class
次の配列があるとします。
Inventory = new Item[5];
次の要素が含まれています。
Item elementOne = new Item(1, "Element One", "Array Element");
Item elementTwo = new Item(2, "Element Two", "Array Element");
等
Inventory[0] = elementOne;
Inventory[1] = elementTwo;
Inventory[2] = elementThree;
など。Item(または一般的なもの)のどの要素がIeであるかを見つけるメソッドを作成するにはどうすればよいですか
elementOne.findPlace
0 の int 値を返します。
ありがとう!