Arrays.asList(T... a) 不转换基本类型数组值为list

随手总结一下,数组转换为list总结  

int[] a1 = new int[] { 1, 2, 3, 4 };
  String[] a2 = new String[] { "srt1", "srt2", "srt3", "srt4" };

  System.out.println(a1.getClass().getName() + ": " + Arrays.asList(a1));
  System.out.println(a2.getClass().getName() + ": " + Arrays.asList(a2));

输出结果:

[I: [[I@35ce36]
[Ljava.lang.String;: [srt1, srt2, srt3, srt4]

Arrays.asList(T... a),其中的参数a,若为对象类型的数组,该方法将会把数组中的每个元素取出来,放在list中返回;

若a为基本类型的数组,该方法将会把a对应的toString()返回的值作为list的元素,并返回该list

你可能感兴趣的:(Arrays.asList(T... a) 不转换基本类型数组值为list)