This question already has answers here:
What does the 'static' keyword do in a class?

(21个回答)


2年前关闭。




我仍在学习封装。我有一个GrammarList,其中每个封装的Grammar都有一个数组listRule及其所有设置程序和获取程序。如此处所示:
public class Grammar {

private enum Type {Left, Right, NULL};
private String Nom;
private static Type type = null;
private static ArrayList<Rule> listRule;

public Grammar(String nom, Type type) {
    this.Nom = nom;
    this.type = type;
    this.listRule = new ArrayList<Rule>();
}
...
}

现在,在我的程序中,我注意到每次添加新语法时,都会覆盖我的数组listRule(在其中添加了与语法相关的规则)。我已经能够确定该错误发生在Grammar grammar = new Grammar(parametre[0], null);行上,该行清空了所有其他语法的listRule的内容,因此listRule对于每个语法似乎都是相同的。我的数组listRule创建不正确还是我的循环?
    try {
        while ((strLine = br.readLine()) != null) {
            String[] parametre = strLine.split(",");
            Grammar G = GrammarList.containsNom(parametre[0]);
            if (G == null) {
                Grammar grammar = new Grammar(parametre[0], null);
                grammarList.add(grammar);
                for (int i = 1; i < parametre.length; i++) {
                    SyntaxCheck check = new SyntaxCheck(parametre[i]);
                    if (check.isValid())
                        grammar.AddRule(check.Rule, check.Sens);
                }
            }
        }
    } catch (IOException e1) {
        e1.printStackTrace();
    }

最佳答案

您的listRule字段是static,这意味着每个实例共享一个对象。

删除static关键字:

private ArrayList<Rule> listRule; // not static

07-24 17:33