Equality of Integer and Long objects in Java
TLDR
Use the equals method when checking if Integer or Long objects are equal.
Integer a = 1000;
Integer b = 1000;
a.equals(b); // true
a == b; // false
Using == sometimes returns incorrect results
Checking the equality of Integer objects with the ...
genakag.hashnode.dev2 min read