Notice
Recent Posts
Recent Comments
Link
목록2025/03/24 (1)
꾸준한 개발일기

오류(에러)는 크게 컴파일 오류(Compile Error), 런타임 오류(Runtime Error), 논리 오류(Logic Error) 세 가지로 나뉨.1️⃣ 컴파일 오류(Compile Error)코드 작성 후 컴파일 과정에서 발생하는 오류문법(Syntax) 오류, 타입(Type) 오류, 클래스/변수 미존재 오류 등이 있음실행 자체가 불가능함예제int number = "Hello"; // 타입 불일치 오류 (컴파일 오류)error: incompatible types: String cannot be converted to int2️⃣ 런타임 오류(Runtime Error)프로그램 실행 중에 발생하는 오류컴파일은 성공하지만 실행 도중 문제가 발생하여 비정상 종료됨대표적인 예로 NullPointerExcep..
Programing/스프링
2025. 3. 24. 07:32