这个语句是什么意思,它实现的是什么功能(见绿色高亮显示区)?还有,有个和我预想的结果不一样的地方,就是为什么结果不显示换行啊,“System.out.println”实现的不就是这个功能吗(见黄色高亮显示区)?就这些问题,大家能不能具体和我讲解一下啊?ps:可能把图片下载后看得清楚些(具体步骤:单击图片弹出大图后,再右键选择“图片另存为”)http://imm.io/7cpr

解决方案 »

  1.   

    你在println后再打印一行就看到效果了
      

  2.   

    从Aa的第2个元素(30)开始复制到Bb的从2开始3个元素,即Bb变成10 10 30 40 50 10 10 10 10 10
    因为System.out.println不在循环体里,所以结束循环时才换行一次
      

  3.   

    System.arraycopy(src, srcPos, dest, destPos, length)src the source array.
    srcPos starting position in the source array.
    dest the destination array.
    destPos starting position in the destination data.
    length the number of array elements to be copied.楼上Bb应该是开头两位是初始化的0 0吧,估计你是刊误!楼上正解