下面要给大家讲到的是java包装类应用方面的内容,主要介绍int和Integer实现相互转换的方式,一起来看看具体实例吧。
实现int和Integer的相互转换
可以通过Integer类的构造方法将int装箱,通过Integer类的intValue方法将Integer拆箱。
例:
public class Demo { public static void main(String[] args) { int m = 500; Integer obj = new Integer(m); // 手动装箱 int n = obj.intValue(); // 手动拆箱 System.out.println("n = " + n); Integer obj1 = new Integer(500); System.out.println("obj等价于obj1的返回结果为" + obj.equals(obj1)); } }
运行结果:
n = 500 obj等价于obj1的返回结果为true
更多相关应用实例,请继续来奇Q工具网的java实例栏目进行了解吧。
推荐阅读: