0

我有这个哈希集代码,当我尝试在它上面运行我的编译方法时,我得到了 Null Pointer Exception: null 错误。这是代码:

private void initKeywords() {
        keywords = new HashSet<String>();
        keywords.add("final");
        keywords.add("int");
        keywords.add("while");
        keywords.add("if");
        keywords.add("else");
        keywords.add("print");     
    }

    private boolean isIdent(String t) {
        if (keywords.contains(t)) {  ***//This is the line I get the Error***
            return false;
        }
        else if (t != null && t.length() > 0 && Character.isLetter(t.charAt(0))) {
            return true;
        }
        else {
            return false;
        }
    }

与此错误相关的其他行是:

public void compileProgram() {        
        System.out.println("compiling " + filename);
        while (theToken != null) {
            if (equals(theToken, "int") || equals(theToken, "final")) {
                compileDeclaration(true);
            } else {
                compileFunction(); //This line is giving an error with the above error
            }
        }
        cs.emit(Machine.HALT);
        isCompiled = true;
    }



private void compileFunction() {
        String fname = theToken;
        int entryPoint = cs.getPos();  
        if (equals(fname, "main")) {
            cs.setEntry(entryPoint);
        } 
        if (isIdent(theToken)) theToken = t.token(); ***//This line is giving an error***
        else t.error("expecting identifier, got " + theToken);

        symTable.allocProc(fname,entryPoint);


       accept("(");
        compileParamList();
        accept(")");
        compileCompound(true);
        if (equals(fname, "main")) cs.emit(Machine.HALT);
        else cs.emit(Machine.RET);
    }
4

4 回答 4

2

你确定你initKeywords()以前跑过isIdent()吗?

于 2009-12-08T01:37:03.910 回答
0

您可能想initKeywords从该对象的构造函数中调用。

于 2009-12-08T01:38:56.280 回答
0

要么 要么keywordst空。使用调试器或打印语句应该很容易确定。如果keywords为空,我会假设initKeywords()尚未调用。

于 2009-12-08T01:40:46.470 回答
0

我个人尽量远离 init 方法。如前所述,构造函数用作初始化器,静态块也是如此:

private final static Set<String> KEYWORDS = new HashSet<String>();
static {
        keywords.add("final");
        keywords.add("int");
        keywords.add("while");
        keywords.add("if");
        keywords.add("else");
        keywords.add("print");
}
于 2009-12-08T05:55:16.113 回答