JDK 소스 학습의 하나인 lang back

1184 단어 JDK 원본 학습
JAVA 프로그래밍 사상, 제1장, 대상의 개념, 그리고 접근 권한에 대한 깊은 이해
JDK, Math 보기
Character 클래스의 of 방법, 여기에 이분 검색법을 사용했습니다.
public static UnicodeBlock of(int codePoint) {
            if (!isValidCodePoint(codePoint)) {
                throw new IllegalArgumentException();
            }

            int top, bottom, current;
            bottom = 0;
            top = blockStarts.length;
            current = top/2;

            // invariant: top > current >= bottom && codePoint >= unicodeBlockStarts[bottom]
            while (top - bottom > 1) {
                if (codePoint >= blockStarts[current]) {
                    bottom = current;
                } else {
                    top = current;
                }
                current = (top + bottom) / 2;
            }
            return blocks[current];
        }

Double 종류의 compare 방법
 
return (thisBits == anotherBits ?  0 : // Values are equal
                (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN)
                 1));                          // (0.0, -0.0) or (NaN, !NaN)

Integer 내의 일부 변위 연산자(<>,>> 등)

좋은 웹페이지 즐겨찾기