util.types.isBigInt64Array()方法是util模塊的內置應用程序編程接口,用於在node.js中鍵入對BigInt64Array的檢查。
用法:
util.types.isBigInt64Array( value )
參數:此方法接受上述和以下描述的單個參數:
- value:它是必需的參數,並且可以是任何數據類型。
返回值:它返回一個布爾值,即如果該值為BigInt64Array,則為TRUE,否則為FALSE。
以下示例說明了Node.js中util.types.isBigInt64Array()方法的使用:
例:
// Node.js program to demonstrate the
// util.types.isBigInt64Array() Method
// Allocating util module
const util = require('util');
// Functions to be passed as parameter
// of utiltypes.isBigInt64Array() method
var v1 = new BigInt64Array();
var v2 = new BigUint64Array();
// Printing the returned value from
// util.types.isBigInt64Array() method
console.log(util.types.isBigInt64Array(v1));
console.log(util.types.isBigInt64Array(v2));
輸出:
true false
例:
// Node.js program to demonstrate the
// util.types.isBigInt64Array() Method
// Allocating util module
const util = require('util');
// Functions to be passed as parameter of
// utiltypes.isBigInt64Array() method
var v1 = new BigInt64Array();
var v2 = new BigUint64Array();
// Calling util.types.isBigInt64Array() method
if(util.types.isBigInt64Array(v1))
console.log("The passed value is a BigInt64Array.");
else
console.log("The passed value is not a BigInt64Array");
if(util.types.isBigInt64Array(v2))
console.log("The passed value is a BigInt64Array.");
else
console.log("The passed value is not a BigInt64Array");
輸出:
The passed value is a BigInt64Array. The passed value is not a BigInt64Array
注意:上麵的程序將通過使用node filename.js
命令。
參考: https://nodejs.org/api/util.html#util_util_types_isbigint64array_value
相關用法
- Node.js GM resize()用法及代碼示例
- Node.js GM threshold()用法及代碼示例
- Node.js GM thumbnail()用法及代碼示例
- Node.js GM transparent()用法及代碼示例
- Node.js GM lower()用法及代碼示例
- Node.js GM contrast()用法及代碼示例
- Node.js GM negative()用法及代碼示例
- Node.js GM scale()用法及代碼示例
- Node.js GM operator()用法及代碼示例
注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 Node.js | util.types.isBigInt64Array() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。