如何比较Java两个Long对象相等

Long a = 30000L;
Long b = 30000L;

// 使用equals或者.longValue比较
a.equals(b);
a.longValue() == b.longValue();