BigInt.asUintN()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2020.
BigInt.asUintN()
静态方法将 BigInt
值截断为给定数量的最低有效位,并以无符号整数形式返回该值。
¥The BigInt.asUintN()
static method truncates a BigInt
value to the given number of least significant bits and returns that value as an unsigned integer.
Try it
语法
参数
返回值
例外情况
描述
¥Description
BigInt.asUintN
方法将 BigInt
值截断为给定位数,并将结果解释为无符号整数。无符号整数没有符号位并且始终为非负数。例如,对于 BigInt.asUintN(4, 25n)
,值 25n
被截断为 9n
:
¥The BigInt.asUintN
method truncates a BigInt
value to the given number of bits, and interprets the result as an unsigned integer. Unsigned integers have no sign bits and are always non-negative. For example, for BigInt.asUintN(4, 25n)
, the value 25n
is truncated to 9n
:
25n = 00011001 (base 2) ^==== Use only the four remaining bits ===> 1001 (base 2) = 9n
注意:
BigInt
值始终编码为二进制补码。¥Note:
BigInt
values are always encoded as two's complement in binary.
与 Number.prototype.toExponential()
等类似语言 API 不同,asUintN
是 BigInt
的静态属性,因此你始终将其用作 BigInt.asUintN()
,而不是用作 BigInt 值的方法。将 asUintN()
暴露为 "标准库函数" 允许 与 asm.js 互操作。
¥Unlike similar language APIs such as Number.prototype.toExponential()
, asUintN
is a static property of BigInt
, so you always use it as BigInt.asUintN()
, rather than as a method of a BigInt value. Exposing asUintN()
as a "standard library function" allows interop with asm.js.
示例
保持在 64 位范围内
¥Staying in 64-bit ranges
BigInt.asUintN()
方法对于保持在 64 位算术范围内非常有用。
¥The BigInt.asUintN()
method can be useful to stay in the range of 64-bit arithmetic.
const max = 2n ** 64n - 1n;
BigInt.asUintN(64, max); // 18446744073709551615n
BigInt.asUintN(64, max + 1n); // 0n
// zero because of overflow: the lowest 64 bits are all zeros
规范
Specification |
---|
ECMAScript Language Specification # sec-bigint.asuintn |
浏览器兼容性
BCD tables only load in the browser
也可以看看
¥See also