当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript TypedArray.copyWithin()用法及代码示例


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

相关用法


注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 TypedArray.copyWithin() function in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。