我在尝试将扫描值从文本文件存储到数组时遇到问题。我收到的错误是无法从字符串转换为月份。Month 是另一个类中的对象,例如 public Month(String line){}
该程序的重点是逐行扫描文件,存储每个月的薪水,并在最后计算总薪水。我收到的错误是无法从字符串转换为月份。Month 是另一个类中的对象,例如 public Month(String line){}
private void readMonths() {
skipHeader();
while(in.hasNextLine()) {
String line= in.nextLine();
if(line.length()>0){
theMonths[monthCount]= line;
monthCount++;
} else {
monthCount=monthCount;
}
}
}