Eclipse compilation error: The hierarchy of the type 'Class name' is inconsistent

后端 未结 23 2507
遥遥无期
遥遥无期 2020-12-04 15:53

I have downloaded some open source software written in Java and tried to compile it using Eclipse. I got the error: \"The hierarchy of the type \'Class name\' is inc

23条回答
  •  有刺的猬
    2020-12-04 16:29

    If the extended class has the issue then the above error message will gets displayed.

    Example

    class Example extends Example1 {
    
    }
    

    fix the issues in Example1

提交回复
热议问题