5
public static long checkedAdd(long a, long b) {
    long result = a + b;
    checkNoOverflow((a ^ b) < 0 | (a ^ result) >= 0);
    return result;
}

我很感兴趣为什么布尔逻辑 | 在这里使用。为什么不使用条件短路||?

4

1 回答 1

1

该课程的第一条评论:

// NOTE: Whenever both tests are cheap and functional, it's faster to use 
// &, | instead of &&, ||

更多上下文:https ://stackoverflow.com/a/11412121/869736

于 2013-08-16T15:09:52.937 回答