I am using eclipse and i get this error--I think it's an error with the way i imported becker.robots

后端 未结 4 1950
刺人心
刺人心 2021-01-29 12:43

I am using eclipse and i get this error:

Exception in thread \"main\" java.lang.Error: Unresolved compilation problem:     at Wall.main(Wall.java:6)
4条回答
  •  执念已碎
    2021-01-29 13:06

    From the code you posted, line 6 contains no syntax error. I can only guess it's eclipse build problem, maybe you turned off auto compilation on file saving, or eclipse is looking at old version of the class files generated from your code (or maybe you haven't even saved your file)

    Id suggest you save all files, and try a rebuild by doing Project -> Clean (if you set build automatically), or Project -> Build Project (after cleaning it)

提交回复
热议问题