I have a question about the following piece of code:
public class Equivalence {
public static void main(String[] args) {
Integer n1 = new Integer(47);
Integer n2 = new Integer(47);
System.out.println(n1 == n2);
System.out.println(n1 != n2);
}
}
The resulting output surprised me:
false
true
I have checked the constructor in Javadoc online, nothing help from there.
Thanks in advance
Thank you