gpt4 book ai didi

线程中的Java异常 "main"java.lang.RuntimeException : Uncompilable source code - Erroneous tree type:

转载 作者:行者123 更新时间:2023-12-01 13:10:17 25 4
gpt4 key购买 nike

当我尝试运行下面的代码时,我在线程“main”java.lang.RuntimeException 中收到异常:无法编译的源代码 - 错误的树类型:netbeans 中出现错误。我应该从文件中输入,然后使用下面的公式在输出窗口中显示数据。在尝试运行代码之前,我没有看到代码本身给出的任何错误。我是 Java 新手,很难掌握一些概念。我已经清除了 netbeans 缓存并重新启动,现在收到此错误。感谢您的帮助。

 package input.from.a.file.broc.east;

public class InputFromAFileBrocEast
{
public static void main(String[] args)
{
String name;
int hours;
int rate;
int grossPay;

InputFile wageFile;
wageFile = new InputFile("payroll.txt");

while (!wageFile.eof())
{
name = wageFile.readString();
hours = wageFile.readInt();
rate = wageFile.readInt();

if (hours <= 40)
{
grossPay = (rate * hours);
System.out.println("grossPay");
}

else
{
grossPay = (int) ((rate * 40) + (hours-40) * 1.5 * rate);
System.out.println("Gross Pay: " + grossPay);
}


}

}

}

最佳答案

即使某些类不可编译,Netbeans 也允许您运行代码。在应用程序运行时,如果访问此类,就会导致此异常。

为了确保获得准确的编译错误,您需要在项目选项中取消选择“保存时编译”。

另请查看https://netbeans.org/bugzilla/show_bug.cgi?id=199293

关于线程中的Java异常 "main"java.lang.RuntimeException : Uncompilable source code - Erroneous tree type:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22927644/

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