我试图将答案放在变量中,但我遇到了这个错误:
double p1;
String text = JOptionPane.showInputDialog("Type the grade of p1");
p1 = double.parseDouble(text);
当我使用double.parseDouble(text)
时,我在Netbeans ID.E中获得"double cannot be dereferenced"
我做错了什么?
答案 0 :(得分:5)
使用大写为D
的班级名称:
p1 = Double.parseDouble(text);
parseDouble
method is in the Double
class。如果它是小写的,则表示生成编译器错误的基本类型double
。