在转参的时候,使用int和Integer一样吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在转参的时候,使用int和Integer一样吗?相关的知识,希望对你有一定的参考价值。
我看有些程序,使用void test(Integer id);
他和void test(int id);
这样写有区别吗?
int和Integer,String和String(包装类)
1.int和Integer的值如果是一样的,则是在内存中开辟相同的内存空间
2.但是String和String(包装类)是不一样的
代码演示:
int a=1; Integer b = new Integer(1); System.out.println(a==b); String x="c"; String y=new String("c"); System.out.println(x==y);
显示的结果:
以上是关于在转参的时候,使用int和Integer一样吗?的主要内容,如果未能解决你的问题,请参考以下文章