Can not compile enums in Eclipse

后端 未结 3 641
醉话见心
醉话见心 2020-12-03 13:45

While trying to introduce enums in my Android project in Eclipse, I encountered with the following problem: Compiler says:

  1. The type java.lang.Enum cannot be re
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-03 14:34

    1. Go to properties of project with the build error (right click > Properties)
    2. View the "Libraries" tab in the "Build Path" section
    3. Find the "JRE System Library" in the list (if this is missing then this error message is not an eclipse bug but a mis-configured project)
    4. Remove the "JRE System Library"
    5. Hit "Add Library ...", Select "JRE System Library" and add the appropriate JRE for the project (eg. 'Workspace default JRE')
    6. Hit "Finish" in the library selection and "OK" in the project properties and then wait for the re-build of the project

    Hopefully the error will be resolved ...

提交回复
热议问题