자바 프로그래밍 면접, 이렇게 준비한다

Publish date: 2020-07-20
Tags: java 면접 algorithm

감상

2020.07.20

인상 깊은 단락

p99

Collections.newSetFromMap() 언급. 책에는 오타로 Collection.netSetFromMap() 이라고 되어 있다.

p158

Integer.MAX_VALUE 등에 대한 언급. 2의 보수 원리. 아래와 같이도 확인할 수 있다.

assertThat(-Integer.MIN_VALUE).isEqualTo(Integer.MIN_VALUE);
assertThat(Math.abs(Integer.MIN_VALUE)).isEqualTo(Integer.MIN_VALUE);
assertThat(Integer.MIN_VALUE -1).isEqualTo(Integer.MAX_VALUE);

p320

https://code.google.com/archive/p/dbdeploy/ 소개. 2010년이후로 업데이트 되고 있지 않다. 이 책의 개정판이 나온다면 Liquibase 등이 소개할 듯 하다.

comments powered by Disqus