vote up 3 vote down star

i just stumbled onto this comment.

    public static int lowestOneBit(int i) {
    // HD, Section 2-1
    return i & -i;
    }

in the 1.5 java source. what does this comment mean? is it a reference to a book? a spec?

flag

commentz be evilzz! – harshath.jr Jun 17 at 12:18

1 Answer

vote up 8 vote down check

HD probably refers to Hacker's Delight by Henry S. Warren. Indeed, this formula appears on page 11, section 2-1.

link|flag
Agreed. The documentation for java.lang.Long tells us »Implementation note: The implementations of the "bit twiddling" methods (such as highestOneBit and numberOfTrailingZeros) are based on material from Henry S. Warren, Jr.'s Hacker's Delight, (Addison Wesley, 2002).« – Johannes Rössel Jun 17 at 12:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.