我是Netbeans的新手,我的教授给了我一个简单的练习来查找给定程序中的编译器错误。这是一个简单的hello world程序,但我得到的只是
Compiling 1 source file to D:\UCC\CS6312-Mobile Devices and Systems\Lab\MyFirstMIDlet\build\compiled
D:\UCC\CS6312-Mobile Devices and Systems\Lab\MyFirstMIDlet\src\myfirstmidlet\MyFirstMIDlet.java:12: error: ';' expected
form.addCommand(exit)
1 error
D:\UCC\CS6312-Mobile Devices and Systems\Lab\MyFirstMIDlet\nbproject\build-impl.xml:359: Compile failed; **see the compiler error output for details.**
BUILD FAILED (total time: 0 seconds)
所以我想知道在哪里可以找到编译器错误的详细信息,因为我必须在我的任务中包含这些错误。谢谢
答案 0 :(得分:0)
编译错误是错误消息的第一位:
D:\ UCC \ CS6312-移动设备和系统\ Lab \ MyFirstMIDlet \ src \ myfirstmidlet \ MyFirstMIDlet.java:12:错误:';'预期 form.addCommand(出口)
这可能意味着它所说的内容,并且你在这一行上缺少一个分号,但不一定 - 这可能是导致编译器产生错误的其他错误。您可能还会遇到修复该错误的情况,然后必须修复之后出现的其他错误 - 这就是编译器的本质!