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 | 31 |
Tags
- Android Apk 이름 변경
- R프로그래밍
- Kotlin
- Android Apk
- tomcat
- FLUTTER
- jQuery
- Exception
- Java
- html
- java error
- release Apk
- MySQL
- release unsigned
- Android Apk 이름
- Program type already present
- Android
- css
- CSS사용법
- android fragment
- DataTable
- fragment
- apache gzip
- Eclipse
- JavaScript
- Firebase
- spring
- 안드로이드
- error
- android error
Archives
- Today
- Total
selfstarter
non-static method 'getclass()' cannot be referenced from a static context 해결방법 본문
Server/Java
non-static method 'getclass()' cannot be referenced from a static context 해결방법
selfstarter 2020. 5. 23. 12:59non-static method 'getclass()' cannot be referenced from a static context 해결방법
Error
non-static method 'getclass()' cannot be referenced from a static context
Code
public static final String className = getClass().getSimpleName().trim();
Case
class의 전역에서 사용하려고 했다. 그런데 getClass는 static Method가 아니므로 전역에서 사용할 수 없다.
Soution
정적메소드가 아닌 getClass()말고 클래스이름.class을 쓰면 된다
'Server > Java' 카테고리의 다른 글
Java instanceof example (0) | 2020.05.30 |
---|---|
No enclosing instance of type Myani is accessible in Java (0) | 2020.05.30 |
Java split 공백도 배열에 추가되도록 하기 (0) | 2020.05.20 |
JAVA 엑셀파일 숫자 그대로 읽기 (0) | 2020.05.20 |
Java 메모리 Stack, Heap 정리 (0) | 2020.05.14 |
Comments