TypedArray 對象的 copyWithin() 函數在自身內部複製此 TypedArray 的內容。此方法接受三個數字,其中第一個數字表示應該開始複製元素的數組的索引,接下來的兩個數字表示應該從中複製(獲取)數據的數組的開始和結束元素。
用法
其語法如下
obj.copyWithin(3, 1, 3);
示例
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<script type="text/javascript">
var int32View = new Int32Array([21, 64, 89, 65, 33, 66, 87, 55 ]);
document.write("Contents of the typed array:"+int32View);
int32View.copyWithin(5, 0, 5);
document.write("<br>");
document.write("Contents of the typed array after copy:"+int32View);
</script>
</body>
</html>
輸出
Contents of the typed array:21,64,89,65,33,66,87,55 Contents of the typed array after copy:21,64,89,65,33,21,64,89
示例
不必將第三個參數傳遞給此函數(應從中複製數據的數組的末尾元素),它將複製到數組的末尾。
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<script type="text/javascript">
var int32View = new Int32Array([21, 64, 89, 65, 33, 66, 87, 55 ]);
document.write("Contents of the typed array:"+int32View);
int32View.copyWithin(5, 0);
document.write("<br>");
document.write("Contents of the typed array after copy:"+int32View);
</script>
</body>
</html>
輸出
Contents of the typed array:21,64,89,65,33,66,87,55 Contents of the typed array after copy:21,64,89,65,33,21,64,89
相關用法
- JavaScript TypedArray.sort()用法及代碼示例
- JavaScript TypedArray.indexOf()用法及代碼示例
- JavaScript TypedArray.fill()用法及代碼示例
- JavaScript TypedArray.every()用法及代碼示例
- JavaScript TypedArray.forEach()用法及代碼示例
- JavaScript TypedArray.join()用法及代碼示例
- JavaScript TypedArray.values()用法及代碼示例
- JavaScript TypedArray.toString()用法及代碼示例
- JavaScript TypedArray.of()用法及代碼示例
- JavaScript TypedArray.map()用法及代碼示例
- JavaScript TypedArray.subarray()用法及代碼示例
- JavaScript TypedArray.set()用法及代碼示例
- JavaScript TypedArray.keys()用法及代碼示例
- JavaScript TypedArray.lastIndexOf()用法及代碼示例
- JavaScript TypedArray.reverse()用法及代碼示例
- JavaScript TypedArray.find()用法及代碼示例
- JavaScript TypedArray.findIndex()用法及代碼示例
- JavaScript TypedArray.filter()用法及代碼示例
- JavaScript TypedArray.includes()用法及代碼示例
- JavaScript TypedArray.entries()用法及代碼示例
注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 TypedArray.copyWithin() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。