How to fix quot;cannot find symbol errorquot; for my program?(如何修复“找不到符号错误为我的程序?)
问题描述
我很难找到为什么我不断收到此消息:
I am struggling to find why I keep receiving this message:
Integer.java:13: error: cannot find symbol
num = Integer.parseInt(numStr);
^
symbol: method parseInt(String)
location: class Integer
Integer.java:16: error: cannot find symbol
num2 = String.parseInt(numStr2);
^
symbol: method parseInt(String)
location: class String
2 errors
我错过了什么吗?谢谢.
Is there something I missed? Thanks.
import javax.swing.JOptionPane;
public class Integer
{
public static void main (String[] args)
{
String numStr, numStr2, sum, product;
int num, num2, again;
do
{
numStr = JOptionPane.showInputDialog("Enter an integer: ");
num = Integer.parseInt(numStr);
numStr2 = JOptionPane.showInputDialog("Enter another integer: ");
num2 = Integer.parseInt(numStr2);
sum = "The sum is " + ((num + num2));
product = " and the product is " + ((num * num2));
JOptionPane.showMessageDialog(null, sum);
again = JOptionPane.showConfirmDialog(null, "Do Another?");
}
while (again == JOptionPane.YES_OPTION);
}
}
推荐答案
你应该把你的类重命名为另一个名字,也许叫它IntegerMachine"而不是Integer".Java 已经有一个名为Integer"的本机类,通过命名您自己的类,这意味着您调用的不是您想要的 java.lang.Integer.parseInt(string),而是调用 .Integer.parseInt(),后者不存在.
You should rename your class to another name, perhaps call it "IntegerMachine" and not "Integer". Java already has a native class with the name "Integer", and by naming your own class the same would mean that instead of calling java.lang.Integer.parseInt(string), which you intended, you are calling .Integer.parseInt(), for which the latter does not exist.
这篇关于如何修复“找不到符号错误"为我的程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何修复“找不到符号错误"为我的程序?


基础教程推荐
- Java Swing计时器未清除 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 大摇大摆的枚举 2022-01-01