gpt4 book ai didi

javascript - JavaScript 的最大整数值是多少,一个数字在不损失精度的情况下可以达到多少?

转载 作者:IT老高 更新时间:2023-10-28 11:11:45 26 4
gpt4 key购买 nike

这是由语言定义的吗?有定义的最大值吗?不同浏览器有区别吗?

最佳答案

JavaScript 有两种数字类型:NumberBigInt .

最常用的数字类型Number是64位浮点IEEE 754数字。

该类型的最大精确整数值为Number.MAX_SAFE_INTEGER ,即:

  • 253-1,或
  • +/- 9,007,199,254,740,991,或
  • 九千万亿七万亿一百九十九亿二亿五千四百万七十四万九百九十一

换个 Angular 来看:一万亿字节是一拍字节(或一千兆兆字节)。

在此上下文中的“安全”是指准确表示整数并正确比较它们的能力。

From the spec:

Note that all the positive and negative integers whose magnitude is no greater than 253 are representable in the Number type (indeed, the integer 0 has two representations, +0 and -0).

为了安全地使用大于此的整数,您需要使用 BigInt ,它没有上限。

请注意,按位运算符和移位运算符对 32 位整数进行运算,因此在这种情况下,最大安全整数为 231-1 或 2,147,483,647。

const log = console.log
var x = 9007199254740992
var y = -x
log(x == x + 1) // true !
log(y == y - 1) // also true !

// Arithmetic operators work, but bitwise/shifts only operate on int32:
log(x / 2) // 4503599627370496
log(x >> 1) // 0
log(x | 1) // 1


关于数字 9,007,199,254,740,992 主题的技术说明:此值有一个精确的 IEEE-754 表示,您可以从变量中分配和读取此值,因此对于非常谨慎选择的应用程序在小于或等于该值的整数域中,您可以将其视为最大值。

在一般情况下,您必须将此 IEEE-754 值视为不精确,因为它是对逻辑值 9,007,199,254,740,992 还是 9,007,199,254,740,993 进行编码是不明确的。

关于javascript - JavaScript 的最大整数值是多少,一个数字在不损失精度的情况下可以达到多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/307179/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com