DevTools

[Eclipse] Implicit super constructor Object() is undefined for default constructor 오류

zhye 2021. 2. 24. 21:52
반응형

가끔 이클립스에서 Project Import를 했을 때,

Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor.

이런 오류가 날 때가 있다.

 

이 오류는 JRE System Library까지 import되지 않아서 생기는 오류이다.

 

1. 프로젝트 우클릭 -> Build Path -> Configure Build Path

2. Library 탭에서 Add Library

3. JRE System Library 선택 후 Next

4. Workspace default JRE 선택 후 Finish

5. Apply하면 오류 해결!

반응형