자바의 정석 11장 (30일차) - Collections 클래스
Collections Collection 클래스를 위한 static 메서드를 제공한다. Math클래스와 동일한 방식으로 사용할 수 있다. Math.random, Math.abs 등 1. fill, copy, binearysearch, sort등 Arrays메서드와 동일한 메서드 보유 2. 동기화 전용 메서드를 보유 - synchronized Vector는 동기화가 되어있지만 ArrayList는 동기화를 안하게 되어있다. 필요할 때만 동기화된 클래스를 사용 기능적으로 효율적인 코드 아래의 형식처럼 Collections.synchronized로 동기화를 ArrayList에 적용하면 Vector클래스를 사용하는 것과 동일하다. List list = new ArrayList(); Collections.synch..