1.淺拷貝說明
把原型對像中成員變數為值類型的屬性都複製給複製對象,把原型對像中成員變數為引用型別的引用位址也複製給克隆對象,也就是原型對像中如果有成員變數為引用對象,則此引用對象的地址是共享給原型對象和克隆對象的。簡單來說就是淺拷貝只會複製原型對象,但不會複製它所引用的對象。
2.Arrays.copyOf()拷貝
#是建立一個新的陣列(也就是分配了一個新的記憶體空間),然後呼叫System.arraycopy( )複製內容,賦值給新數組,然後回傳新數組。
3.實例
public static byte[] copyOfRange(byte[] original, int from, int to) { int newLength = to - from; if (newLength < 0) throw new IllegalArgumentException(from + " > " + to); byte[] copy = new byte[newLength]; System.arraycopy(original, from, copy, 0,Math.min(original.length - from, newLength)); return copy; }
其實它呼叫的就是System.arraycopy,所以肯定也是淺拷貝。
以上是如何使用Java的Arrays.copyOf實現淺拷貝?的詳細內容。更多資訊請關注PHP中文網其他相關文章!