node . js util . types . isint8 array()方法

原文:https://www . geesforgeks . org/node-js-util-types-is it8 array-method/

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

语法:

util.types.isInt8Array( value )

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

  • Value: It is a required parameter to save any data type.

返回值:返回布尔值,如果值是 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命令编译运行。

参考:T2】https://nodejs . org/API/util . html # util _ util _ types _ isint 8 array _ value