我有很多抽象类的子类,每个子类声明一个具有相同名称的公共静态final字段。我想在抽象超类中使用这个字段而不初始化它,并希望每个子类都被强制初始化它。
我正在考虑这个问题,因为抽象类的所有子类都声明了一个名为UNIQUE_ID的公共静态最终字符串字段,并且每个子类都必须声明这样一个具有该名称的字段。
我希望我的问题很清楚,如果不是,请告诉我。
是否可以或多或少地与此相提并论?
编辑:已添加代码:
我的抽象类看起来像:
public abstract class ExperimentPanelModel extends Panelizable {
protected String nextButtonText;
protected String backButtonText;
protected String skipButtonText;
protected Properties currentFile;
protected List<Properties> pastFiles = new ArrayList<Properties>();
public ExperimentPanelModel(Properties argcurrentfile, List<Properties> argpastfiles) {
currentFile = argcurrentfile;
pastFiles = argpastfiles;
nextButtonText = "Next";
backButtonText = "Back";
skipButtonText = "Skip";
}
...
}
该抽象类的一些非抽象子类看起来像(注意所有这些子类都声明public static final String UNIQUE_ID
):
public class ConfigurationGUI extends ExperimentPanelModel {
public static final String UNIQUE_ID = "ConfigurationGUI";
public static final String DATA_MODIFIED = "DataModified";
Date dateOfLastSession;
int ExperimentalSession;
int ExperimentOrder;
boolean nextButtonEnabled = false;
public ConfigurationGUI(Properties argcurrentfile, List<Properties> argpastfiles) {
super(argcurrentfile, argpastfiles);
nextButtonText = "Confirm";
backButtonText = "Abort";
}
...
}
更多一个例子:
public class Introduction extends ExperimentPanelModel {
public static final String UNIQUE_ID = "Introduction";
public static final String INSTRUCTIONS_XML_FILE = "instructions.xml";
public static final String THIS_INSTRUCTION_PROPERTY = UNIQUE_ID;
private String thisInstructionText = UNIQUE_ID;
Properties readInstructionsProperties = new Properties();
public Introduction(Properties argcurrentfile, List<Properties> argpastfiles) {
...
最后一个:
public class Instruction1 extends ExperimentPanelModel {
public static final String UNIQUE_ID = "Instruction1";
public static final String INSTRUCTIONS_XML_FILE = "instructions.xml";
public static final String THIS_INSTRUCTION_PROPERTY = UNIQUE_ID;
...
}
答案 0 :(得分:8)
字段构思不起作用,因为静态字段不能在子类中重写。你可以做的是你可以在抽象类上声明一个抽象方法,这样你的子类就必须实现它。
另请注意,您无法将其设为静态方法,因为这些方法也不会被覆盖。
答案 1 :(得分:3)
在你的情况下,我会在祖先中定义变量。没有必要在每个扩展类中都有一个变量,除非你有一个特别好的理由,你听起来不像。
但是,对于内森的回复却是+1。在很多情况下,这是一件更好的事情。答案 2 :(得分:2)
将public final字段UNIQUE-ID放在抽象类中,并声明一个受保护的构造函数,该构造函数接受UNIQUE-ID的值。您将无法使其静态,因为不同实例的值必须不同。