System.arraycopy();参数说明

1.demo,将lengthByte中的数据copy到mPlayText中

 arraycopy(Object src,  int  srcPos, Object dest, int destPos, int length)
 src:lengthByte 源数组
 srcPos:源数组中起始copy的position
 dest:目的地 数组
 destPos:目的地数组中放置的位置    position 
 length:需要copy的长度

猜你喜欢

转载自blog.csdn.net/guojiayuan002/article/details/83505998