对于Long类型的对比,不要用“==”,尽量避免Long类型的直接对比 将Long转换成基本类型再进行比较:a.longValue() == b.longValue(),或者0 == Long.compare(a, b);