摘要:源數(shù)組源數(shù)組要復制的起始位置目標數(shù)組將原數(shù)組復制到目標數(shù)組目標數(shù)組起始位置從目標數(shù)組的哪個下標開始復制操作復制源數(shù)組的長度例子如下源數(shù)組為目標數(shù)組為開始執(zhí)行數(shù)組復制操作將源數(shù)組從數(shù)組下標開始的位長度的數(shù)組復制到目標數(shù)組從下標為的位置開始復制
**/* * @param src the source array.源數(shù)組 * @param srcPos starting position in the source array.源數(shù)組要復制的起始位置 * @param dest the destination array.目標數(shù)組(將原數(shù)組復制到目標數(shù)組) * @param destPos starting position in the destination data.目標數(shù)組起始位置(從目標數(shù)組的哪個下標開始復制操作) * @param length the number of array elements to be copied.復制源數(shù)組的長度 * @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源數(shù)組為:"); for(char c : src){ System.out.print(c); } System.out.print(" dest目標數(shù)組為:"); for(char c : dest){ System.out.print(c); } /* * 開始執(zhí)行數(shù)組復制操作 * 將源數(shù)組["h","e","l","l","o","w"]從數(shù)組下標0開始的4位長度的數(shù)組["h","e","l","l"] * 復制到目標數(shù)組["1","2","3","4","5","6","7","8"],從下標為3的位置開始 */ System.arraycopy(src,0,dest,3,4); System.out.print(" 復制完成之后的目標數(shù)組為:"); for(char c : dest){ System.out.print(c); } } }
結果輸出如下:
src源數(shù)組為:hellow
dest目標數(shù)組為:12345789
復制完成之后的dest目標數(shù)組為:123hell9
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉載請注明本文地址:http://systransis.cn/yun/72587.html
摘要:相比遍歷復制,此方法更加高效。原因很簡單,該方法使用內存塊整體讀取與復制,相比的遍歷尋址來說自然會快,不過這個速度優(yōu)勢在數(shù)組成員比較多的時候才會有較明顯的體現(xiàn)。下面貼出方法中關鍵部分的方法代碼 API使用場景 在JDK研發(fā)團隊的開發(fā)過程中,對集合的操作過程中常會使用到此方法。 API參數(shù) public static native void arraycopy( Objec...
摘要:二數(shù)組擴容及拷貝數(shù)組的擴容數(shù)組是根據(jù)固定容量創(chuàng)建的,在必要的時候我們需要對數(shù)組進行擴容初始長度為下面決定需要對數(shù)組進行擴容對原數(shù)組進行內容拷貝在對數(shù)組進行拷貝時除了利用循環(huán)遍歷數(shù)組元素進行拷貝外,推薦使用更高效的方法。 PS:如果覺得文章有什么地方寫錯了,哪里寫得不好,或者有什么建議,歡迎指點。 一、認識數(shù)組 數(shù)組是一種線性表數(shù)據(jù)結構。它用一塊連續(xù)的內存空間,來存儲相同類型的一組數(shù)據(jù)。...
摘要:集合之吃透增刪查改從源碼看初始化以及增刪查改,學習。一初始化無參的構造器可以看到這個構造器初始化了一個空數(shù)組。指定長度的構造器這個構造器顯式的指明了數(shù)組的長度,其實如果小于的話,在添加第一個元素的時候還是會擴充到長度為的數(shù)組。 Java集合之ArrayList - 吃透增刪查改 從源碼看初始化以及增刪查改,學習ArrayList。 先來看下ArrayList定義的幾個屬性: priva...
摘要:第三階段常見對象的學習類類包含一些有用的字段和方法,他不能被實例化用于垃圾回收終止正在運行的虛擬機。參數(shù)用作狀態(tài)碼,根據(jù)慣例,非表示異常終止返回從年月日到現(xiàn)在時間的毫秒數(shù)協(xié)調時間源數(shù)組。 第三階段 JAVA常見對象的學習 System類 System類包含一些有用的字段和方法,他不能被實例化 //用于垃圾回收 public static void gc() //終止正在運行的java...
閱讀 5777·2021-11-24 10:25
閱讀 2711·2021-11-16 11:44
閱讀 3862·2021-10-11 11:09
閱讀 3182·2021-09-02 15:41
閱讀 3264·2019-08-30 14:14
閱讀 2293·2019-08-29 14:10
閱讀 2358·2019-08-29 11:03
閱讀 1134·2019-08-26 13:47