Java
- 오류(Error)와 예외(Exception)
- Checked Exception(IOexception) & Unchecked Exception(RuntimeException)
- 예외발생 시 try-catch, finally
- throws, throw
- Chained Exception > initCause()/getCause()
- Generic의 효용 (중복되거나 필요없는 코드 줄임 / 타입 안정성은 해치지 않음
- Generic 문법 <> (타입 변수로 T,U,V,E가 자주사용됨 : 컨벤션 / 다수 타입변수 사용가능 / 와일드카드)
- Generic 제한 (객체의 static 멤버에 사용불가 / 제네릭 배열 생성불가)
- Collection (추상화된 자료구조-Interface / List \ 제네릭 인터페이스 )
출처 : https://www.javatpoint.com/collections-in-java- Wrapper 객체(오토박싱 / 오토언박싱)
Character ch = 'X'; // AutoBoxing char c = ch; // AutoUnBoxing
- 자바 정규 표현식 (API java.util.regex Pattern.matches()
참고사이트- 개선된 switch 문(JDK14 이상)
->
MacOS
- 터미널 한글 깨짐 해결방법
iTerm2 > Settings > Profiles > Text > Unicode의 Unicode normalization form을 NFC로 수정