Java基础知识精选 你答对了几道?
没有技术深度是大多程序员的一种常态。
但是当你成为一个资深的工程师的时候,很多公司并不希望你还是那样平庸,没有深度。虽然你会纳闷,我就算有深度你们也不一定用得上呀?然而到了这个级别的人需求量并不像初中级开发那么多,公司更理性和稳妥的做法是选择有深度的人,不是吗?
integer比较
看下面这段有意思的代码,对数字比较敏感的小伙伴有没有发现异常?
public static void main(string[] args) { integer a = 128,b=128; integer c = 127,d=127; system.out.println(a==b); system.out.println(c==d); }
如果你的回答是false,false,可能你有一定的基础,知道integer是一个封装类。当然如果你的答案是true,true的话,也在一定的认知范围之内,但是基础知识掌握的不够好。
好了,我们运行main方法,正确答案应该是false,true。前几年这道题出现在很多面试题中,当然你也会说了,我会做项目就ok了,用到查就是了,何必要知道,这我没话说。
其实当我们给一个integer对象赋一个int值的时候,会调用integer类的静态方法valueof,让我们看下源代码是怎么实现的。
integercache方法有明确的注释,缓存范围,如何修改等等。
/** * cache to support the object identity semantics of autoboxing for values between * -128 and 127 (inclusive) as required by jls. * * the cache is initialized on first usage. the size of the cache * may be controlled by the -xx:autoboxcachemax=<size> option. * during vm initialization, java.lang.integer.integercache.high property * may be set and saved in the private system properties in the * sun.misc.vm class. */ private static class integercache { static final int low = -128; static final int high; static final integer cache[]; static { // high value may be configured by property int h = 127; string integercachehighpropvalue = sun.misc.vm.getsavedproperty("java.lang.integer.integercache.high"); if (integercachehighpropvalue != null) { int i = parseint(integercachehighpropvalue); i = math.max(i, 127); // maximum array size is integer.max_value h = math.min(i, integer.max_value - (-low) -1); } high = h; cache = new integer[(high - low) + 1]; int j = low; for(int k = 0; k < cache.length; k++) cache[k] = new integer(j++); } private integercache() {} }
public static integer valueof(int i) { assert integercache.high >= 127; if (i >= integercache.low && i <= integercache.high) return integercache.cache[i + (-integercache.low)]; return new integer(i); }
神奇不神奇,其实代码描述的很清晰,如果整型字面量的值介于-128到127之间,就不会new一个新的integer对象,而是直接引用常量池中的integer对象,所以上面的运行结果是a==b=false,而c==d=true。
string比较
接下来这道题,相对来说应该比较简单了。
public static void main(string[] args) { string s1 = "abc"; string s2 = "abc"; string s3 = new string("abc"); system.out.println(s1 == s2); system.out.println(s1 == s3); }
小伙伴们看了是不是很熟悉?可能有的人一眼就扫出了答案true,false。当然没有扫出正确答案的小伙伴们也不要气馁,下面跟大家分析分析为毛是这么一个答案。
按照==的语法来看, 首先s1、s2、s3是三个不同的对象,常理来说,输出都会是false。然而程序的运行结果确实true、false。第二个输出false可以理解,第一个输出true就又让人费解了。
我们知道一些基本类型的变量和对象的引用变量都是在函数的栈内存中分配,而堆内存中则存放new 出来的对象和数组。然而除此之外还有一块区域叫做常量池。
像我们通常想string s1 = "abc";这样申明的字符串对象,其值就是存储在常量池中。当我们创建string s1 = "abc"这样一个对象之后,"abc"就存储到了常量池(也可叫做字符串池)中。
当我们创建引用string s2 = "abc" 的时候,java底层会优先在常量池中查找是否存在"abc",如果存在则让s2指向这个值,不会重新创建,如果常量池中没有则创建并添加的池中。这就是为什么答案是true 和false的原因。
integer与int比较
public static void main(string[] args) { integer a = new integer(128); int b = 128; integer c = new integer(6); integer d = new integer(6); system.out.println(a == b); system.out.println(c == d); }
相信又有不少小伙伴懵比了吧,ture还是false?还是直接公布答案吧,true,false。
c == d=false,我觉得没什么好说的,可能有的小伙伴要问了不是-128-127被缓存起来了么?但是我们这里的integer是new出来的,并不是用的缓存,所以结果是false。
a == b=true,大家注意一下这里的b是int类型,当int和integer做==比较的时候,integer类型会自动拆箱,也就是把integer转成int类型,所以这里进行比较的是int类型的值,所以结果即为true。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 注意!PHP 7中不要做的10件事