안녕하세요 자바 개발을 하는 중에 class에서 다른 class를 호출하는데 아래와 같이 에러가 뜨는 경우가 있을 겁니다 에러 코드입니다 No enclosing instance of type Overriding is accessible. Must qualify the allocation with an enclosing instance of type Overriding (e.g. x.new A() where x is an instance of Overriding). 에러 이미지입니다 순간 당황스러웠지만 제 경우에는 그렇게 해결하기 힘든 에러는 아니었습니다! 에러의 원인과 해결 방법에 대해서 알아보겠습니다 에러 원인 위의 에러를 번역하면 No enclosing instance of type Overridin..