Я пытаюсь реорганизовать свой код и добавляю методы, где это возможно.Когда я читаю файл из метода и возвращаю результат вычисления, код переходит в экстремальное потребление памяти, бесконечный цикл.
Моя модификация выглядит так:
import java.util.Scanner;
public class NumberOfLines {
public static int compute () {
// read this file
String theFile = "numbers.txt";
Scanner fileRead = null;
if (NumberOfLines.class.getResourceAsStream(theFile) != null) {
fileRead = new Scanner(NumberOfLines.class.getResourceAsStream(theFile));
}
else {
System.out.print("The file " + theFile + " was not found");
System.exit(0);
}
System.out.println("Checkpoint: I am stuck here");
// count number of lines
int totalLines = 0;
while(fileRead.hasNextInt()) {
totalLines++;
}
fileRead.close();
return totalLines;
}
public static void main (String[] args) {
System.out.println("The total number of lines is: " + compute());
}
}
Если вместо этогонаписания метода и размещения кода на главном, тогда он работает.Почему это?
РЕДАКТИРОВАТЬ
Содержимое numbers.txt :
5
2
7
4
9
1
5
9
69
5
2
5
6
10
23
5
36
5
2
8
9
6
Так что я ожидаю, что будет:
Общее количество строк: 22 * 1019 *