Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- fragment
- spring
- java error
- Program type already present
- android fragment
- Kotlin
- jQuery
- R프로그래밍
- release Apk
- css
- Exception
- Android
- tomcat
- Firebase
- Android Apk 이름 변경
- Eclipse
- html
- android error
- CSS사용법
- DataTable
- MySQL
- Android Apk 이름
- JavaScript
- Android Apk
- release unsigned
- error
- 안드로이드
- FLUTTER
- apache gzip
- Java
Archives
- Today
- Total
selfstarter
No enclosing instance of type Myani is accessible in Java 본문
Server/Java
No enclosing instance of type Myani is accessible in Java
selfstarter 2020. 5. 30. 14:10No enclosing instance of type Myani is accessible
Error
No enclosing instance of type Myani is accessible
Code
public class TestMain {
public static void main(String[] args) {
AAA aaa = new AAA();
}
public class AAA {
public AAA() {
}
}
}
Case
main함수 내에 AAA class를 생성하는 코드에서 오류 발생
확인해 보니 static main은 static 이므로 이미 다른 class들 보다 먼저 생성되어져 메모리 상에 올라가 있다.
그런데 AAA class는 static class가 아니므로 메모리상에 없기 때문에 class가 없어 에러가 나는 것이다.
Soution
AAA 클래스에 static을 붙여서 해결했다.
'Server > Java' 카테고리의 다른 글
Java Reflection으로 class 정보 가져오기 (0) | 2020.06.05 |
---|---|
Java instanceof example (0) | 2020.05.30 |
non-static method 'getclass()' cannot be referenced from a static context 해결방법 (0) | 2020.05.23 |
Java split 공백도 배열에 추가되도록 하기 (0) | 2020.05.20 |
JAVA 엑셀파일 숫자 그대로 읽기 (0) | 2020.05.20 |
Comments