Java基礎——數組的複製System.arraycope();

package day04; /* * 數組的複製 * 1.System.arraycope()方法能夠實現數組的複製 */ public class Array_cope { public static void main(String[] args) { int[] arr={1,2,3,4,5,6,7}; int[] arr2=new int[5]; System.ar
相關文章
相關標籤/搜索