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 |
Tags
- 안드로이드
- Eclipse
- CSS사용법
- jQuery
- FLUTTER
- MySQL
- Android Apk 이름 변경
- android fragment
- apache gzip
- Android
- html
- release Apk
- fragment
- DataTable
- Firebase
- tomcat
- android error
- Program type already present
- Exception
- error
- release unsigned
- css
- R프로그래밍
- Kotlin
- Android Apk 이름
- JavaScript
- spring
- Android Apk
- java error
- Java
Archives
- Today
- Total
목록No enclosing instance of type Myani is accessible (1)
selfstarter
No enclosing instance of type Myani is accessible in Java
No 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가 아니므로 메모리상에 없기 때문에 ..
Server/Java
2020. 5. 30. 14:10