Eclipse中的ClassNotFoundException,所有包都在同一个src文件夹中

时间:2011-04-07 21:02:42

标签: java eclipse classnotfoundexception

我正在研究一种可以从控制台运行的计算器程序,它也可以支持创建内联函数,例如: inline _FOO{a1, a2} a1 + a2声明函数,调用_FOO{2,3}应该返回2 + 3。我正在使用Converter类来完成所有的解析和计算。 我在同一个包中创建了一个名为InlineFunction的类,它包含程序默认函数的实现,这些都可以正常工作,但是当我尝试调用内联函数时,我得到一个错误。 在调试时我注意到当程序工作正常直到我实际声明一个新的内联函数的部分时,InlineFunction function = new InlineFunction();我立即得到一个ClassNotFoundException。我无法弄清楚为什么,因为该函数与其他函数在同一个包中,工作,函数,我在Converter类中导入整个包。

编辑:InlineFunction的代码:

package oop.ex2.functions;

import java.util.LinkedHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import oop.ex2.main.UndeclaredVariableException;

public class InlineFunction implements Calculable {
    //Regular expression for finding a variable name.
    private static final String VARIABLE_NAME_REGEX = "@[a-z0-9]+";
    //Pattern for finding a variable name.
    private static final Pattern VARIABLE_NAME = Pattern.compile(VARIABLE_NAME_REGEX);
    private LinkedHashMap<String, Double> _parameters;
    private String _code;

    public InlineFunction(String code, String[] parameters) {
        _parameters = new LinkedHashMap<String, Double>();
        _code = code;
        for (String name: parameters) {
            _parameters.put(name, 0d);
        }
    }

    @Override
    public String calculate(Double[] parameters) {
        if (parameters.length != _parameters.size()) {
            throw new IllegalParameterNumberException();
        }
        int parameterIndex = 0;
        for (String key: _parameters.keySet()){
            _parameters.put(key, parameters[parameterIndex]);
        }
        _code = replaceParameters(_code);
        return _code;
    }

    private String replaceParameters(String expression) {
        Matcher variableName = VARIABLE_NAME.matcher(expression);
        while (variableName.find()) {
            if (_parameters.containsKey(variableName.group())) {
                expression = variableName.replaceFirst(_parameters.get(variableName.group()).toString());
                //Reset the matcher, since the expression was changed
                variableName = VARIABLE_NAME.matcher(expression);
            } else {
                throw new UndeclaredVariableException();
            }
        }
        return expression;
    }
}

1 个答案:

答案 0 :(得分:0)

问题是由于没有正确处理给予构造函数的输入,并且已经修复。