Illegal Start of type.
I get the famous illegal start of type error no matter what i do to this line right here.. Can anyone help me with it?
{
}
if((i & 0x100)! = 0);//Illegal start of type occurs on this line
{
I get the famous illegal start of type error no matter what i do to this line right here.. Can anyone help me with it?
{
}
if((i & 0x100)! = 0);//Illegal start of type occurs on this line
{
I am not advanced at java programming, but am only a teacher that makes java applications to make me a better teacher.
Possible answers:
1) has the variable 'i' been declared previous to its use in the if statement (i.e. int i)
2) did you know that variables can not start with a digit (i.e. 0x100) (this is most likely where the error is coming from)
I hope this novice programmer has been of some help. Best of luck!!!