基本类型数组如何转ArrayList?

Arrays.asList 可以用在对象上,但基本类型就出错了。


byte b[]=new byte[3];

b[0]=1;

b[1]=2;

b[2]=3;

ArrayList<Byte>bytes=new ArrayList<Byte>();

bytes.addAll(Arrays.asList(b));

这个提示错误


我想让 byte[] 数组 转换成 ArrayList ,这个可以实现么?

还是需要先转换成 Byte[] 数组 再转换成 byte[] 才能实现呢?


慕桂英3389331
浏览 330回答 1
1回答

蓝山帝景

怎么简单,怎么来。java自动装箱。&nbsp; &nbsp; &nbsp; &nbsp; for(int i=0;i<b.length;i++){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bytes.add(b[i]);&nbsp; &nbsp; &nbsp; &nbsp; }最新补充最近用了下Arrays.asList()发现其参数如果是基本类型数组的话,是这么报错的;Multiple markers at this line&nbsp; &nbsp; - The method addAll(Collection<? extends Byte>) in the type ArrayList<Byte> is not applicable for the arguments&nbsp;&nbsp; &nbsp; &nbsp;(List<byte[]>)也就是说,它把基本类型数组当成是一个List<type[]>,即当成一个整体的对象了。另外一种改法就是把byte[]改成Byte[],这样就可以正常运行了,也就是说asList()接收的参数应该是一个对象数组;如果参数是基本类型数组,会被当做是只有一个元素的对象数组(即该元素是一个基本类型数组)。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java