TypedArray 的 entries() 函数返回对应 TypedArray 对象的迭代器,使用它,您可以检索它的键值对。它返回数组的索引和该特定索引中的元素。
用法
其语法如下
typedArray.entries()
示例
<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);
document.write("<br>");
var it = int32View.entries();
for(i=0; i<int32View.length; i++) {
document.write(it.next().value);
document.write("<br>");
}
</script>
</body>
</html>
输出
Contents of the typed array:21,64,89,65,33,66,87,55 0,21 1,64 2,89 3,65 4,33 5,66 6,87 7,55
示例
如果在迭代器指向数组末尾时尝试访问数组的下一个元素,结果将是 undefined。
<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);
document.write("<br>");
var it = int32View.entries();
for(i=0; i<int32View.length; i++) {
document.write(it.next().value);
document.write("<br>");
}
document.write(it.next().value);
</script>
</body>
</html>
输出
Contents of the typed array:21,64,89,65,33,66,87,55 0,21 1,64 2,89 3,65 4,33 5,66 6,87 7,55 undefined
相关用法
- JavaScript TypedArray.every()用法及代码示例
- JavaScript TypedArray.sort()用法及代码示例
- JavaScript TypedArray.indexOf()用法及代码示例
- JavaScript TypedArray.fill()用法及代码示例
- 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.copyWithin()用法及代码示例
- JavaScript TypedArray.keys()用法及代码示例
- JavaScript TypedArray.lastIndexOf()用法及代码示例
- JavaScript TypedArray.reverse()用法及代码示例
- JavaScript TypedArray.find()用法及代码示例
- JavaScript TypedArray.findIndex()用法及代码示例
- JavaScript TypedArray.filter()用法及代码示例
- JavaScript TypedArray.includes()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 TypedArray.entries() function in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。