int 和 Integer区别
Posted whirlwind
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int 和 Integer区别相关的知识,希望对你有一定的参考价值。
Java 是一个近乎纯洁的面向对象编程语言,但是为了编程的方便还是引入不是对象的基本数据类型,但是为了能够将这些基本数据类型当成对象操作,Java 为每一个基本数据类型都引入了对应的包装类型(wrapper class),int 的包装类就是 Integer,从 JDK 1.5 开始引入了自动装箱/拆箱机制,使得二者可以相互转换。
Java 为每个原始类型提供了包装类型:
原始类型: boolean,char,byte,short,int,long,float,double
包装类型:Boolean,Character,Byte,Short,Integer,Long,Float,Double
1 package com.lovo; 2 public class AutoUnboxingTest { 3 public static void main(String[] args) { 4 Integer a = new Integer(3); 5 Integer b = 3; // 将3自动装箱成Integer类型 6 int c = 3; 7 System.out.println(a == b); // false 两个引用没有引用同一对象 8 System.out.println(a == c); // true a自动拆箱成int类型再和c比较 9 } 10 }
以上是关于int 和 Integer区别的主要内容,如果未能解决你的问题,请参考以下文章