摘要:
1、Java的基本数据类型都有哪些各占有几个字节? 2、String是基本数据类型吗? String是引用类型,底层使用char数组实现的。 3、short s1 = 1; s1 = s1 + 1;有错吗?short s1 = 1; s1 += 1有错吗; 前者不正确,后者正确。对于short s1 阅读全文
摘要:
1、Math.round(11.5)等于多少?Math.round(-11.5)又等于多少? Math.round(11.5)的返回值是12,Math.round(-11.5)的返回值是-11.四舍五入的原理是在参数上加0.5然后进行取整。 2、switch是否能作用在byte上,是否能作用在lon 阅读全文