해결!: error: No enclosing instance of type "Class명" is accessible.
2020. 4. 6. 23:54ㆍ카테고리 없음
error: No enclosing instance of type "Class명" is accessible. ~~
문제 원인: 함수가 static 이고,참조하려하는 class 가 staic 이 아닐때 일어났다.
해결 방법: 내부에 있는 class 를 static 함수가 접근하려할떄 나는 오류로 static 함수의 static 을 뺴면 해결된다.