官网:http://docs.oracle.com/javase/tutorial/java/data/autoboxing.html 1.赋值: a. 把int类型赋值给Integer类型:JVM会自动调用Integer.valueOf()方法 b. 把Integer类型赋值给int类型:JVM会自动调用intValue()方法 2.比较 a. int 与 int 比较:直接对两个变量的值进行比较 b. int 与 Integer 比较:会先把Integer拆装成int类型,然后进行比较 c.…
1.Integer转换成int的方法 Integer i; int k = i.intValue(); 即Integer.intValue(); 2.int转换成Integer int i; Integer it = new Integer(i); 3.String转换成int的方法 String str = "10"; Integer it = new Interger(str); int i = it.intValue(); 即:int i = Integer.intValu…
public void Test1() { int a = 128; Integer b = 128; Integer c = 128; //Integer会自动拆箱成int,所以为ture System.out.println(a==b); System.out.println(a==c); } @Test public void Test2() { Integer a = 127; Integer b = 127; System.out.println(a == b);//此处结果为true…