반응형
초기화 에러
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The local variable value may not have been initialized
범위 초과 에러
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Type mismatch: cannot convert from int to byte
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The literal 100000000000 of type int is out of range
int의 허용범위 -2,147,483,648 ~ 2,147,483,647이므로 넘는다면 L을 붙여줘야함
빈문자 에러
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Invalid character constant

반응형