gpt4 book ai didi

Java 代码卡在 Scanner hasNextLine

转载 作者:行者123 更新时间:2023-11-30 06:59:22 25 4
gpt4 key购买 nike

首先,我是 Java 的新手,正在尝试完成学校布置的关于创建自动售货机的作业。我的程序将 2 个文件作为 cli 参数,一个用于产品,另一个用于金钱。

对于我的生活,我无法弄清楚为什么代码卡在第 42 行

 (while (moneyTemp.hasNextLine());)

我尝试使用断点在 eclipse 上进行调试,发现代码从未超过这一行。将 print 语句放在 while 循环中,我没有得到输出,所以我知道它没有循环。

Java 文档说 hasNextLine 可以阻止等待用户输入,但由于我的源是一个文件,我不确定为什么会这样。请参阅下面的相关代码。

import java.util.Scanner;
import java.io.File;
import java.io.FileNotFoundException;

public class VendingMachine
{
static Scanner input = new Scanner (System.in);

public static void main(String[] args)
{
try
{
Scanner productTempFile = new Scanner(new File(args[0]));
Scanner moneyTemp = new Scanner(new File(args[1]));
int numProducts = 0; //Number of products to be loaded to the machines
int numMoney = 0; //Number of money objects to be loaded in the machine

while (productTempFile.hasNextLine()) //This block will get the number of products
{
numProducts++;
productTempFile.nextLine();
}
productTempFile.close();


Product[] invArray = new Product[numProducts];
Scanner myFile = new Scanner(new File(args[0]));

for(int i = 0; i < numProducts; i++) //This block populates the array of products
{
String inputLine = myFile.nextLine();
String[] lineArray = inputLine.split(",");

invArray[i] = new Product(lineArray[0], Double.valueOf(lineArray[1]), lineArray[2], lineArray[3],
Double.valueOf(lineArray[4]), Integer.valueOf(lineArray[5]));
}

myFile.close();

System.out.println("I'm here");

while (moneyTemp.hasNextLine()); //This block gets the number of different money items
{
numMoney++;
moneyTemp.nextLine();
}

下面是我提供的第二个文件,即 arg[1],其格式与第一个文件相同。

PaperCurrency,100 Dollar Bill,100.0,medium,paper,0PaperCurrency,50 Dollar Bill,50.0,medium,paper,0PaperCurrency,20 Dollar Bill,20.0,medium,paper,0PaperCurrency,10 Dollar Bill,10.0,medium,paper,4PaperCurrency,5 Dollar Bill,5.0,medium,paper,8PaperCurrency,1 Dollar Bill,100.0,medium,paper,16CoinCurrency,50 Cent Piece,0.5,large,metal,10CoinCurrency,Quarter,0.25,medium,metal,20CoinCurrency,Dime,0.1,small,metal,30CoinCurrency,Nickel,0.05,small,metal,40CoinCurrency,Penny,0.01,small,metal,50

任何帮助将不胜感激。谢谢

最佳答案

去掉行中的分号

 while (moneyTemp.hasNextLine());

Semicolom 使 while 循环完成它的主体而不做任何事情意味着它像 while(){} 当 while 条件为真时什么也不做,因为你的条件是 hasNextLine() 它一次又一次地检查同一行,导致无限循环。

关于Java 代码卡在 Scanner hasNextLine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31617777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com