摘要:源數組源數組要復制的起始位置目標數組將原數組復制到目標數組目標數組起始位置從目標數組的哪個下標開始復制操作復制源數組的長度例子如下源數組為目標數組為開始執行數組復制操作將源數組從數組下標開始的位長度的數組復制到目標數組從下標為的位置開始復制
**/* * @param src the source array.源數組 * @param srcPos starting position in the source array.源數組要復制的起始位置 * @param dest the destination array.目標數組(將原數組復制到目標數組) * @param destPos starting position in the destination data.目標數組起始位置(從目標數組的哪個下標開始復制操作) * @param length the number of array elements to be copied.復制源數組的長度 * @exception IndexOutOfBoundsException if copying would cause * access of data outside array bounds. * @exception ArrayStoreException if an element in thesrc
* array could not be stored into thedest
array * because of a type mismatch. * @exception NullPointerException if eithersrc
or *dest
isnull
. */ public static native void arraycopy(Object src, int srcPos,Object dest, int destPos,int length);**
例子如下:
package test.demo; public class ArrayCopyTest { public static void main(String[] args) { char[] src = new String("hellow").toCharArray(); char[] dest = new String("12345789").toCharArray(); System.out.print("src源數組為:"); for(char c : src){ System.out.print(c); } System.out.print(" dest目標數組為:"); for(char c : dest){ System.out.print(c); } /* * 開始執行數組復制操作 * 將源數組["h","e","l","l","o","w"]從數組下標0開始的4位長度的數組["h","e","l","l"] * 復制到目標數組["1","2","3","4","5","6","7","8"],從下標為3的位置開始 */ System.arraycopy(src,0,dest,3,4); System.out.print(" 復制完成之后的目標數組為:"); for(char c : dest){ System.out.print(c); } } }
結果輸出如下:
src源數組為:hellow
dest目標數組為:12345789
復制完成之后的dest目標數組為:123hell9
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/72587.html
摘要:相比遍歷復制,此方法更加高效。原因很簡單,該方法使用內存塊整體讀取與復制,相比的遍歷尋址來說自然會快,不過這個速度優勢在數組成員比較多的時候才會有較明顯的體現。下面貼出方法中關鍵部分的方法代碼 API使用場景 在JDK研發團隊的開發過程中,對集合的操作過程中常會使用到此方法。 API參數 public static native void arraycopy( Objec...
摘要:集合之吃透增刪查改從源碼看初始化以及增刪查改,學習。一初始化無參的構造器可以看到這個構造器初始化了一個空數組。指定長度的構造器這個構造器顯式的指明了數組的長度,其實如果小于的話,在添加第一個元素的時候還是會擴充到長度為的數組。 Java集合之ArrayList - 吃透增刪查改 從源碼看初始化以及增刪查改,學習ArrayList。 先來看下ArrayList定義的幾個屬性: priva...
摘要:第三階段常見對象的學習類類包含一些有用的字段和方法,他不能被實例化用于垃圾回收終止正在運行的虛擬機。參數用作狀態碼,根據慣例,非表示異常終止返回從年月日到現在時間的毫秒數協調時間源數組。 第三階段 JAVA常見對象的學習 System類 System類包含一些有用的字段和方法,他不能被實例化 //用于垃圾回收 public static void gc() //終止正在運行的java...
閱讀 5766·2021-11-24 10:25
閱讀 2702·2021-11-16 11:44
閱讀 3860·2021-10-11 11:09
閱讀 3178·2021-09-02 15:41
閱讀 3261·2019-08-30 14:14
閱讀 2290·2019-08-29 14:10
閱讀 2354·2019-08-29 11:03
閱讀 1131·2019-08-26 13:47