Java로 (다른 언어도 비슷할것이라 생각함) 프로그래밍을 하다보면 많이 사용하는 자료구조들이 있다.
그 중 대표적인게 배열과 리스트가 빠질 수 없다.
Continue reading
Item27. 비검사 경고를 제거하라
Continue reading
Item26. [Generic] Raw Type은 사용하지 말라
Continue reading
Java의 접근제한자
Continue reading
JSON이란 ?
Continue reading
Item9. try-finally보다는 try-with-resources를 구하라
Continue reading
Item8. finalizer와 cleaner 사용을 피하라
Continue reading
Item7. 다 쓴 객체 참조를 해제하라
Continue reading
Item6. 불필요한 객체 생성을 피하라
Continue reading
Item5. 자원을 직접 명시하지 말고 의존 객체 주입을 사용하라
Continue reading
Item3. private 생성자나 열거 타입으로 싱글턴임을 보증하라
Continue reading
Item50. 적시에 방어적 복사본을 만들라
Continue reading
Item2. 생성자에 매개변수가 많다면 빌더를 고려하라
Continue reading
Item1. 생성자 대신 정적 팩터리 메서드를 고려하라
Continue reading
자료구조 Set
Collection Interface 중 하나로써, 아래와 같은 특징을 갖는다.
Continue reading
자료구조 List
Java에서 제공하는 자료구조는 크게 Collection과 Map 인터페이스로 나뉘어진다.
Collection과 Map 인터페이스는 추후 다시 작성하기로하며, 여기에서는 List에 대해서 공부한 내용을 적어본다.
Continue reading