我有一个看起来像这样的类:
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 个项目,我希望它们静态访问)
任何的想法?
干杯