为什么我的数组被覆盖java

时间:2017-10-18 04:06:13

标签: java arrays arraylist encapsulation

我还在学习封装。我有一个GrammarList,其中每个Grammar emcapsulated都有一个数组listRule,其所有的setter&干将。如下所示:

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();
    }

1 个答案:

答案 0 :(得分:6)

您的listRule字段为static,表示每个实例共享同一个对象。

删除static关键字:

private ArrayList<Rule> listRule; // not static