无效的赋值运算符 加、减、除、乘符号错误

发布于 2025-01-04 02:19:15 字数 516 浏览 0 评论 0原文

当尝试解析两个字符串并对它们执行数学运算时,我收到无效的赋值错误:S

错误在这一行中,

                   IfirstValue+IfirstValue;

这是完整的代码,

firstValue = 34;
    secondValue = 10;

     IfirstValue = Integer.parseInt(firstValue);
               IsecondValue = Integer.parseInt(secondValue);

                   if (operator == 3){
                       IfirstValue+IfirstValue;
                   }

我尝试将 '+' 替换为 '-' 、 '/' , '*'但错误仍然相同:S

(运算符是用户输入的)

请解释为什么会发生。

I am getting the invalid assignment error when trying to parse two strings and them perform mathematical operations on them :S

the error is in this line,

                   IfirstValue+IfirstValue;

Here is the complete code,

firstValue = 34;
    secondValue = 10;

     IfirstValue = Integer.parseInt(firstValue);
               IsecondValue = Integer.parseInt(secondValue);

                   if (operator == 3){
                       IfirstValue+IfirstValue;
                   }

I tried replacing '+' by '-' , '/' , '*' but the error remains same :S

(operator is input from the user)

please explain why it is happening.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神爱温柔 2025-01-11 02:19:15

因为您没有分配表达式的结果。尝试:

IfirstValue = IfirstValue+IfirstValue;

或者

IfirstValue += IfirstValue;

另外,请避免变量名以大写字母开头,这违反了 Java 的编码约定。

Because you don't assign the result of the expression. Try:

IfirstValue = IfirstValue+IfirstValue;

or

IfirstValue += IfirstValue;

Also, please avoid starting variable names with capital letters, it violates Java's coding convention.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文