黑马程序员技术交流社区
标题:
面试题:byte常量池
[打印本页]
作者:
416415590
时间:
2015-10-3 20:27
标题:
面试题:byte常量池
Integer i1 = new Integer(127);
Integer i2 = new Integer(127);
System.out.println(i1 == i2);// false
System.out.println(i1.equals(i2));// true
Integer i3 = new Integer(128);
Integer i4 = new Integer(128);
System.out.println(i3 == i4);// false
System.out.println(i3.equals(i4));// true
Integer i5 = 128;
Integer i6 = 128;
System.out.println(i5 == i6);// false
System.out.println(i5.equals(i6));// true
//byte常量池。 byte范围内的值,直接赋值给Integer,是从常量池里面获取的。
Integer i7 = 127;
Integer i8 = 127;
System.out.println(i7 == i8);// true
System.out.println(i7.equals(i8));// true
作者:
921
时间:
2015-10-3 21:46
不错,学习了
作者:
charryxiaocai
时间:
2015-10-3 23:22
学习了
作者:
dai2686779
时间:
2015-10-3 23:51
看起来很复杂的样子
作者:
大爱卓生
时间:
2015-10-4 00:15
学习了,谢谢
作者:
白岛我种树
时间:
2015-10-4 00:28
来学习学习
作者:
lvfx
时间:
2015-10-4 03:06
好吧,这个东西就是规定,没什么可理解的,记住就行了
作者:
Synaric
时间:
2015-10-4 07:13
总结得不错
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2