简体   繁体   中英

how to find the error part in java coding

I have a problem where java.29 error.

can anyone help me tell where is my java error?

/MyClass.java:27: error: reached end of file while parsing
}
 ^

1 error

if you look at your error and read it slowly it will start making sense

/MyClass.java This shows in which class the error is coming from.
:27 This shows the line on which the error is.
: error: reached end of file while parsing} this is the actual error.
Basically what its saying is that it can't find } on line 27 so if you have this for example, java is expecting

public class MyClass{
...
}

But, yours looks something like this instead

public class MyClass{
...

Go to MyClass and on line 27, you will see what's going on.
This is a compilation error

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM