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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
HD probably refers to Hacker’s Delight by Henry S. Warren. Indeed, this formula appears on page 11, section 2-1.