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

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