获取字段的名称
在Java中,是否可以从实际字段中获取字符串中的字段名称?喜欢:
public class mod {
@ItemID
public static ItemLinkTool linkTool;
public void xxx{
String fieldsName = *getFieldsName(linkTool)*;
}
}
PS:我不是在查找字段的类/类名或从字符串中的名称中获取字段。
编辑:当我查看它时,我可能不需要一种方法来获取字段的名称,Field实例(来自字段的“代号”)就足够了。[例如Field myField = getField(linkTool)
]
在Java本身中可能没有我想要的东西。我将看一下ASM库,但最终我可能会使用字符串作为字段的标识符:/
编辑2:我的英语不是很好(但即使是在我的母语中,我也很难解释这一点),所以我又增加了一个例子。希望现在会更清楚:
public class mod2 {
@ItemID
public static ItemLinkTool linkTool;
@ItemID
public static ItemLinkTool linkTool2;
@ItemID
public static ItemPipeWrench pipeWrench;
public void constructItems() {
// most trivial way
linkTool = new ItemLinkTool(getId("linkTool"));
linkTool2 = new ItemLinkTool(getId("linkTool2"));
pipeWrench = new ItemPipeWrench(getId("pipeWrench"));
// or when constructItem would directly write into field just
constructItem("linkTool");
constructItem("linkTool2");
constructItem("pipeWrench");
// but I'd like to be able to have it like this
constructItemIdeal(linkTool);
constructItemIdeal(linkTool2);
constructItemIdeal(pipeWrench);
}
// not tested, just example of how I see it
private void constructItem(String name){
Field f = getClass().getField(name);
int id = getId(name);
// this could be rewritten if constructors take same parameters
// to create a new instance using reflection
if (f.getDeclaringClass() == ItemLinkTool){
f.set(null, new ItemLinkTool(id));
}else{
f.set(null, new ItemPipeWrench(id));
}
}
}
问题是:如何看构造ItemIdeal方法?(从答案和谷歌搜索中,我发现这在Java中是不可能的,但谁知道呢..)