0

这是我的问题。我从这个方法中删除了 switch 语句,因为我必须改变它以适应多个变量,而 switch 语句只允许 char 常量。如果没有 Java 版本 7,则无法将字符串用于变量。因此,我所做的更改为通常的 if/else 语句。但是在尝试运行程序时,我仍然在 switch 语句中遇到错误,如下所示:

有任何想法吗?如果希望我包含来自测试人员的代码,我可以问。

java.lang.Error:未解决的编译问题:无法为低于 1.7 的源级别打开 String 类型的值。只允许可转换的 int 值或枚举变量

在 Project2.PostfixEvaluator.calculate(PostfixEvaluator.java:124) 在 Project2.PostfixEvaluator.eval(PostfixEvaluator.java:71) 在 Project2.ExpressionEvaluator.evaluate(ExpressionEvaluator.java:29) 在 Project2.ExpressionEvaluatorTester.main(ExpressionEvaluatorTester.java: 32)

public Token calculate(Token opr, Token opd1, Token opd2)
    {
        // Get the first String from opr, it is the operator: +, -, ...
        String oper = opr.getBody();

        System.out.println(opr);

        //Get the two operands by converting from String to int
        int op1 = Integer.parseInt(opd1.getBody());
        int op2 = Integer.parseInt(opd2.getBody());

        //Default return value, in case an error occurs
        int res = 0;

        /**
         * Alterations begin here
         * Performs operation and sets value for res
         */

           if(oper.equals("+")) 
           {
               res = op1+op2;
           }
           else if(oper.equals("-"))
           {
               res = op1-op2;  
           }
           else if(oper.equals("*")){
               res = op1*op2;
           }
           else if(oper.equals("/") && op2 != 0){
               res = op1/op2;
           }
           else if(oper.equals("/") && op2 == 0){
               System.out.println("Division by zero error in"+
                 " PostfixEvaluator.calculate().");
           }
           else if(oper.equals("%") && op2 != 0){
                res = op1%op2;
           }
           else if(oper.equals("%") && op2 == 0){
                System.out.println("Division by zero error in"+
                 " PostfixEvaluator.calculate().");
           }
           else if(oper.equals("<") && (op1 < op2)){
                res = 1;
           }
           else if(oper.equals("<") && (op1 >= op2)){
                res = 0;
           }
           else if(oper.equals("<=") && (op1 <= op2)){
                res = 1;
           }
           else if(oper.equals("<=") && (op1 > op2)){
                res = 0;
           }
           else if(oper.equals(">") && (op1 > op2)){
                res = 1;
           }
           else if(oper.equals(">") && (op1 <= op2)){
                res = 0;
           }
           else if(oper.equals(">=") && (op1 >= op2)){
                res = 1;
           }
           else if(oper.equals(">=") && (op1 < op2)){
                res = 0;
           }
           else if(oper.equals("==") && (op1 == op2)){
                res = 1;
           }
           else if(oper.equals("==") && (op1 != op2)){
                res = 0;
           }
           else if(oper.equals("!=") && (op1 != op2)){
                res = 1;
           }
           else if(oper.equals("!=") && (op1 == op2)){
                res = 0;
           }
           else if(oper.equals("||") && true){
                res = 1;
           }
           else if(oper.equals("&&")&& true){
                res = 1;
           }
           else
               res = 0;





        //Convert res into a Token and return it.
        return new Token(""+res);

}
4

2 回答 2

6

由于这不是编译器错误,而是运行时错误,这意味着您更改了源代码,但无法重新编译它,或者至少无法运行重新编译的代码。

该错误肯定与switch源代码中的语句有关,但您已将其从源代码文件中删除。因此,您必须加载旧版本的 .class 文件。检查是否激活了“自动构建”选项和/或执行完整的项目清理 + 重建。

于 2012-11-04T20:13:11.987 回答
0

执行干净的构建,然后运行您的程序:

干净的: Menu --> Project --> clean

建造: Menu --> Project --> Build Automatically

或者 Menu --> Project -->Build All which is same as: ctrl+B

跑: Right Click(Your PostfixEvaluator.java) -> Run As -> Java Application

于 2012-11-04T20:26:41.453 回答