在线文档教程

typedArray.subarray

typedArray.subarray

subarray()方法在同一商店中返回一个新的TypedArrayArrayBuffer并且具有与此TypedArray对象相同的元素类型。该begin偏移量是包容性end偏移量是独家TypedArray是其中一种类型的数组类型。

语法

typedarray.subarray([begin [,end]])

参数

从OptionalElement开始。抵消是包容性的。如果这个值没有被指定,那么整个数组将被克隆。可选元素以结束于。抵消是排他性的。如果未指定,则从新指定的元素begin到数组末尾的所有元素将包含在新视图中。

返回值

一个新的TypedArray对象。

描述

当前数组的有效索引范围由begin&指定的end范围; 如果新数组的计算长度为负数,则将其限制为零。如果其中之一begin或者end是负数,则表示从数组末尾开始而不是从开头开始的索引。

还要注意,这是在现有的缓冲区上创建一个新的视图。新对象内容的更改将影响原始对象,反之亦然。

示例

使用subarray方法

var buffer = new ArrayBuffer(8 var uint8 = new Uint8Array(buffer uint8.set([1,2,3] console.log(uint8 // Uint8Array [ 1, 2, 3, 0, 0, 0, 0, 0 ] var sub = uint8.subarray(0,4 console.log(sub // Uint8Array [ 1, 2, 3, 0 ]

规范

SpecificationStatusComment
Typed Array SpecificationObsoleteSuperseded by ECMAScript 6.
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'TypedArray.prototype.subarray' in that specification.StandardInitial definition in an ECMA standard.
ECMAScript 2017 Draft (ECMA-262)The definition of 'TypedArray.prototype.subarray' in that specification.Draft

浏览器兼容性

FeatureChromeEdgeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support7124.0 (2)1111.65.1

FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support4.0(Yes)4.0 (2)1011.64.2