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


JavaScript Uint8Array.of()用法及代码示例


Uint8Array数组表示8位无符号整数的数组。值由0初始化。数组中的元素可以通过对象的方法或使用标准语法(用括号表示)进行引用。

这个Uint8Array.of()方法从可变数量的参数创建一个新的类型化数组。

用法:

Uint8Array.of(el0, el1, el2, .., eln)

参数:

  • n-elements:此方法接受元素数量,这些元素本质上是要为其创建数组的元素。

返回值:此方法返回一个新的Uint8Array实例。



范例1:在此示例中,传递的值是通过方法转换为Uint8的字符值。

的JavaScript

<script>  
    // Creating a Uint8Array from a array by   
    // Creating the array from the Uint8Array.of() method 
    let uint8Arr = new Uint8Array; 
    uint8Arr = Uint8Array.of('41', '51', '56', '8', '24'); 
        
    // Printing the result  
    console.log(uint8Arr);  
</script>

输出:

Uint8Array(5) [41, 51, 56, 8, 24]

范例2:在此示例中,传递的值是通过该方法转换为Uint8的int值。 -49999和799分别转换为177和31。

的JavaScript

<script>  
  
    // Create a Uint8Array from a array by   
    // Creating the array from the Uint8Array.of() method 
    let uint8Arr = new Uint8Array; 
  
    // Accepts the uint8 values 
    uint8Arr = Uint8Array.of(-49999, 5, 7, 799, 8);  
  
    // Print the result  
    console.log(uint8Arr);  
</script>

输出:

Uint8Array(5) [177, 5, 7, 31, 8]




相关用法


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