数据操作相关函数笔记
1,数组复制函数
System.arraycopy()
System.arraycopy(源数组,0,目标数组,0,复制长度)
示例:
public class TestArrCopy
{
public static void main(String[] args)
{
int ia[]=new int[]{1,2,3,4,5};
int ib[]=new int[]{9,8,7,6,5,4,3,2};
System.arraycopy(ia,0,ib,0,3);
//复制源数组ia中从下标为0开始的3个元素到数组ib中并从下标为0开始存储
for (int i=0;iia.length;i++)
System.out.print(ia[i]);
for (int j=0;jib.length;j++)
System.out.print(ib[j]);
...[ 查看全文 ]