标签:技术 system logs style 区别 ima int div log
深入理解equals和==的区别:
代码如下:
public class IntegerTest { public static void main(String[] args) { Integer a = new Integer(1); Integer b = a; Integer c = new Integer(1); System.out.println(a==b); //true System.out.println(a==c); //false } }
标签:技术 system logs style 区别 ima int div log
原文地址:http://www.cnblogs.com/lchzls/p/6711272.html