완변 공략

p31, 사용 자제 API (Deprecation)

public class Deprecation {

    /**
     * @deprecated in favor of
     * {@link #Deprecation(String)}
     */
    @Deprecated(forRemoval = true, since = "1.2")
    public Deprecation() {
    }

    private String name;

    public Deprecation(String name) {
        this.name = name;
    }
}

p32, 정규 표현식

p32, 한 번 쓰고 버려져서 가비지 컬렉션 대상이 된다.