标签: java oop integer
public class NewClass { public static void main(String args[]) { Integer a = 188; Integer b = 188; System.out.println(a.intValue() == b); //prints true } }
上面的代码示例打印为true。由于我没有考虑'b'的整数值,如何比较代码并打印TRUE?