标签: java wrapper
对此行为的解释是什么?
class test { public static void main (String[] args) { Integer i = 4000, j = 4000; System.out.println(i==j); Integer k = 50, n =50; System.out.println(k==n); } }
输出: 假 是