本帖最后由 罗海云 于 2013-2-23 16:07 编辑
- package com.itheima.day01;
- public class AutoBox {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stu
- Integer i1 = 128;
- Integer i2 = 128;
- System.out.println(i1 == i2);
- <FONT color=red>//就是想问下为什么这个程序执行第一次就是true...第二次咋就变成false了呢..
- </FONT>}
- }
复制代码 能说下具体的原理,?
|