《thinging in java》中指出自动包装机制不能应用于泛型数据,自己写的测试代码如下:
1 package com.xt.thinks15_11_1; 2 3 import java.util.Arrays; 4 5 /** 6 * 自动包装在泛型数组的测试 7 * 8 * @author Administrator 9 * 10 */ 11 public class AutoBoxGenericTest { 12 13 public static <T> void antoBoxGeneric(T[] ts, T t) { 14 // ts[0] = 1 ;//当假设T指定为Integer的时候,是没有ts[0]=1这种指定方式的 15 for (int i = 0; i < ts.length; i++) { 16 ts[i] = t; 17 } 18 System.out.println(Arrays.toString(ts)); 19 } 20 21 public static void main(String[] args) { 22 // 这里虽然看似能够自动包装int为Integer,但是都是假象,具体看反汇编字节码命令 23 antoBoxGeneric(new Integer[5], 1); 24 } 25 26 }
反汇编字节码命令中红色圈出的部分显示了执行了Integer的静态方法valueOf将1转成了Integer(这里不是针对泛型的时候转型,而是执行泛型方法之前执行的转型)
javap这个命令还是有很大的好处的
时间: 2024-09-29 17:35:52