6

我有很多抽象类的子类,每个子类都声明了一个同名的公共静态最终字段。我正在考虑在抽象超类中拥有这个字段而不初始化它,并希望每个子类都被迫初始化它。

我正在考虑这个问题,因为我的抽象类的所有子类都声明了一个名为 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;
...
}
4

3 回答 3

8

字段的想法是行不通的,因为静态字段不能在子类中被覆盖。您可以做的是您可以在抽象类上声明一个抽象方法,以便您的子类必须实现它。

另请注意,您不能将其设为静态方法,因为它们也不会被覆盖。

于 2013-03-11T16:55:41.010 回答
3

在您的情况下,我将在祖先中定义变量。在每个扩展类中都有一个变量是没有意义的,除非你有一个特别好的理由,你听起来不像。

+1 for Nathan's reply though. In quite a few cases, that's a better thing to do.

于 2013-03-11T17:09:42.653 回答
2

将公共最终字段 UNIQUE-ID 放在抽象类中,并声明一个受保护的构造函数,该构造函数采用 UNIQUE-ID 的值。您将无法将其设为静态,因为不同实例的值需要不同。

于 2013-03-11T16:56:43.593 回答