gpt4 book ai didi

javascript - 使用 BigInt 进行数学计算时的精度问题

转载 作者:行者123 更新时间:2023-12-02 22:06:29 25 4
gpt4 key购买 nike

我遇到了一个奇怪的问题...我正在使用一个 API,需要我做一些数学运算...我需要使用以下代码生成一个整数:

import time

id = long((time.time() - 14 * 24 * 60 * 60) * 1000.0 - 1420070400000L) << 22
#Output using 1578430631.86 as timestamp: 659137523812925440

问题是该示例是用 python 编写的,而我使用的是 Javascript...我尝试将其转换为 JS,如下所示:

var ts = (new Date()).getTime() / 1000;
var id = (BigInt((ts - 14 * 24 * 60 * 60) * 1000.0 - 1420070400000) << 22).toString();
//Output using 1578430631.86 as timestamp: 659137520205824000

正如您所看到的,输出有所不同,这是一个大问题。如果有人能指出我正确的方向,那将非常感激!提前致谢!

最佳答案

问题在于,当数字已经丢失精度时,您将其转换为 BigInt。

因此,在进行数学运算之前,请将所有内容都转换为 BigInt:

var ts = BigInt((new Date()).getTime()) / 1000n;
var id = ((ts - 14n * 24n * 60n * 60n) * 1000n - 1420070400000n << 22n).toString();
//Output using 1578430631.86 as timestamp: 659137520205824000

关于javascript - 使用 BigInt 进行数学计算时的精度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59699381/

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