Java – mysterious comments in JDK source code: / / HD, section 2-1

I just stumbled upon this comment

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

In 1.5 java source code What does this comment mean? Is it a reference for a book? A specification?

Solution

HD may be hacker's delay mentioned by Henry S. Warren In fact, this formula appears in section 2-1 on page 11

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>