printf( ) 사용시 컴파일 Error- Exception in thread "main" java.lang.Error: Unresolved compilation problem: The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int, float, char, String) - Eclipse..
CODEDRAGON ㆍDevelopment/Java
반응형
오류 메시지
Exception in thread "main" java.lang.Error: Unresolved compilation problem: The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int, float, char, String) |
해결방법1 - 이클립스의 컴파일 버전 변경으로 해결
eclipse > windows > preference >
Java-Compiler >
Java-Compiler에서 Compiler compliance level:1.4을 1.7로 변경
변경 전 | |
변경 후 |
해결방법2 - 프로젝트의 자바 컴파일 버전 변경
프로젝트 선택 > 마우스 우클릭 > Properties >
Use compliance from execution environment'CDC-1.1/Foundation-1.1 on the 'Java Build Path' 체크 해제 >
Complier compliance lever:1.4 -> 1.7로 수정
해결 완료!
'Development > Java' 카테고리의 다른 글
FunctionEx02-메소드의 매개변수 (0) | 2015.06.12 |
---|---|
FunctionEx01-함수 구조 이해 (0) | 2015.06.06 |
Error-Access restriction: The constructor JFrame(String) is not accessible due to restriction on required library C:\Program Files\Java\jdk1.8.0_05\jre\lib\rt.jar (0) | 2015.05.13 |
운영체제 OS의 비트버전 확인 - Windows 7, Vista, Windows8 비트수(bit) (0) | 2015.04.05 |
운영체제 OS의 비트 버전 확인 - Windows XP, 비트수(bit) (0) | 2015.03.30 |