私は次のようなクラスを持っています:
public class Items {
String uselessText;
public static final Item COW = new Item("text", 0);
public static final Item CAT = new Item("abc", 1);
public static final Item DOG= new Item("wow", 2);
...SO on
public void search(String search) {
for(every Item in this Class) {
if(item.textString == "abc") {
//DO SOMETHING
}
}
}
これは可能ですか?そして、ありがたいことに、私は配列を実行したくありません(100を超えるアイテムがあり、静的アクセスが必要なため)
何か案が?
乾杯