-
[Java] No enclosing instance of type Main1 is accessible. Must qualify the allocation with an enclosing instance of type Main1 (e.g. x.new A() where x is an instance of Main1 ).프로그래밍/Java 2022. 11. 3. 21:57반응형
Main이 있는 곳에 class를 추가했더니 이렇게 나왔는데 그냥 추가한 클래스 앞에 static을 붙여주면 해결된다.
static public class Account { private int account; private double balance; ... }
public static class Account { private int account; private double balance; ... }
이렇게 하면 된다.
반응형'프로그래밍 > Java' 카테고리의 다른 글
[SpringBoot] SpringBoot 서버에 배포하기 (0) 2023.06.04 [SpringBoot] SpringBoot with Gradle (0) 2023.02.09 [SpringBoot] 나를 빡치게 하는 Hello World! (0) 2022.10.18 [JAVA] Class has been compiled by a more recent version of the Java Environment (class file version 55.0) (0) 2022.09.05 [Eclipse] 이클립스 한글 깨짐 (0) 2022.05.30