-
Common Java errors.
description: telling you common java errors and some basic java codes :p
diffulcty: -1 i mean seriously if you dont understand it don't do it!
well i wanted to help the community and since people are posting in the help sections 'help i can't compile!' or '100 errors help!' or another common one 'what does ';' expected mean? so i decided to tell people how to fix their errors and shut them up lol.
Here are some common mistakes with codes:
Code:
Say you make a command and you forget your brackets and your ';'s right? and it comes up with errors right? well you have to go to the FIRST error as usally that is the root of the problem. and now say it says " ';' expected" with the name of the file (client .java) and numbers after it like like this :776. the :776 means what line the error occured on. to find that line quickly go into notepad and press CTRL + G. fill in the 776 and it will take you to the 776 line. now to fix that '; expected' error look at your code and look at the ends of each code and see if you have a ';' at the end.
Now to fix ALL your errors make sure you start at the beginning and go down till the errorsare fixed. this is a real simple concept. if you don't get this LEAVE PROGRAMMING ALLTOGETHER!!
-
Well, I think most of us know this already, But Some of us don't so.. (H)