當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。