我不太确定我在使用此代码时遇到了什么问题。
我正在尝试导入joptionpane,然后将字符串转换为int 我的错误来自
**start = inputValue.Integer.parseInt();**
JOptionPane pane = new JOptionPane();
String inputValue = JOptionPane.showInputDialog("Please input a value");
start = inputValue.Integer.parseInt();
答案 0 :(得分:2)
试试这个:
start = Integer.parseInt(inputValue);
答案 1 :(得分:1)
我认为你的意思是start = Integer.parseInt(inputValue);