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


Node.js util.types.isInt8Array()用法及代码示例


util.types.isInt8Array()方法是util模块的内置应用程序编程接口,用于在node.js中对Int8Array进行类型检查。

用法:

util.types.isInt8Array( value )

参数:该方法接受上述和以下描述的单个参数。



  • value:它是包含任何数据类型的必需参数。

返回值:它返回一个布尔值,如果该值是Int8Array对象,则返回TRUE,否则返回FALSE。

以下示例说明了Node.js中util.types.isInt8Array()方法的使用:

范例1:

// Node.js program to demonstrate the    
// util.types.isInt8Array() Method  
  
// Allocating util module 
const util = require('util'); 
  
// Value to be passed as parameter of 
// util.types.isInt8Array() method 
var v1 = new BigInt64Array(); 
var v2 = new BigUint64Array(); 
var v3 = new Float32Array(); 
var v4 = new ArrayBuffer(); 
var v5 = new Int8Array(); 
  
// Printing the returned value from 
// util.types.isInt8Array() method 
console.log(util.types.isInt8Array(v1)); 
console.log(util.types.isInt8Array(v2)); 
console.log(util.types.isInt8Array(v3)); 
console.log(util.types.isInt8Array(v4)); 
console.log(util.types.isInt8Array(v5));

输出:

false
false
false
false
true

范例2:

// Node.js program to demonstrate the    
// util.types.isInt8Array() Method  
  
// Allocating util module 
const util = require('util'); 
  
// Value to be passed as parameter of 
// util.types.isInt8Array() method 
var v1=new Int8Array(); 
var v2=new Int16Array(); 
   
// Calling util.types.isInt8Array() method 
if(util.types.isInt8Array(v1)) 
    console.log("The passed value is a Int8Array."); 
else
    console.log("The passed value is not a Int8Array"); 
   
if(util.types.isInt8Array(v2)) 
    console.log("The passed value is a Int8Array."); 
else
    console.log("The passed value is not a Int8Array");

输出:

The passed value is a Int8Array.
The passed value is not a Int8Array

注意:上面的程序将通过使用node filename.js命令。

参考: https://nodejs.org/api/util.html#util_util_types_isint8array_value




相关用法


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