코딩 연습장/오류!

오류일기 -6-

Do아 2021. 3. 18. 09:54
728x90

2021/03/09(화)

간단한 생성자 만드는 중 오류 발생

오류 - Exception in thread "main" java.lang.Error: Unresolved compilation problem:

No enclosing instance of type Exam06 is accessible. Must qualify the allocation with an enclosing instance of type Exam06 (e.g. x.new A() where x is an instance of Exam06).

at java4.Exam06.main(Exam06.java:14)

메인 함수는 static형인데 참조하려는 클래스가 static형이 아니여서 오류

class o를 static으로 바꿔주면 오류 해결

728x90

'코딩 연습장 > 오류!' 카테고리의 다른 글

R - 패키지 설치 오류  (0) 2021.04.11
오류일기-7-  (0) 2021.03.18
오류일기 -5-  (0) 2021.03.16
오류일기 -4-  (0) 2021.03.16
오류 일기 -3-  (0) 2021.03.16