java - Viewing a Compiler error output -
i new netbeans , given simple exercise professor find compiler errors in given program. simple hello world program is
compiling 1 source file d:\ucc\cs6312-mobile devices , systems\lab\myfirstmidlet\build\compiled d:\ucc\cs6312-mobile devices , systems\lab\myfirstmidlet\src\myfirstmidlet\myfirstmidlet.java:12: error: ';' expected form.addcommand(exit) 1 error d:\ucc\cs6312-mobile devices , systems\lab\myfirstmidlet\nbproject\build-impl.xml:359: compile failed; **see compiler error output details.** build failed (total time: 0 seconds)
so want know can find details of compiler errors have include in assignment. thank
the compile error first bit of error message:
d:\ucc\cs6312-mobile devices , systems\lab\myfirstmidlet\src\myfirstmidlet\myfirstmidlet.java:12: error: ';' expected form.addcommand(exit)
this mean says, , you're missing semicolon on line, doesn't - might else that's wrong that's causing compiler produce error. may run case fix error have fix others come afterwards - such nature of compilers!
Comments
Post a Comment