전체 글

java.util.collections 총정리 set편
java.util에 존재하는 collection들을 이번 글에서는 Set부터 정리해보자. javadoc, 구현 코드를 중심 분석해볼 예정 간단하게 java.util에 존재하는 Collection들을 알아보고 Set에 대해서 알아보자. 우선 상속과 구현된 구조를 살펴보자 인터페이스 구조 Collection 인터페이스 Set SortedSet NavigableSet Queue Deque List AbstractCollection Collection 인터페이스를 구현한 추상 클래스 중복을 허용함 실제 저장 구조와 관계된 함수는 미구현됨. AbstractSet HashSet LinkedHashSet TreeSet EnumSet AbstractList ArrayList AbstractSequentialList L..
Lombok 이란?
공식문서 : "Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more." 어노테이션 기반으로 코드를 자동완성 해주는 라이브러리 장점 코드 자동생성을 통한 생상성 향상 반복되는 코드를 줄여 가독성 및 유지보수성 향상 빌더패턴이나 로그 자동 생성 등 다양한 방면으로 활용 가능 단점 ..