gpt4 book ai didi

javascript - node.js 中具有大数字的按位运算符

转载 作者:搜寻专家 更新时间:2023-11-01 00:13:14 24 4
gpt4 key购买 nike

尝试对两个大数进行异或,结果不正确。

例子:

 >  7894237947293^4353453453
105105424

例如,在 python 上,它得到正确答案:

>>> 7894237947293^4353453453
7898549962768

如何在 node.js 上进行异或运算?

最佳答案

使用 bignum 库 https://github.com/justmoon/node-bignum

var bignum = require('bignum');

var b = bignum('7894237947293').xor('4353453453');

关于javascript - node.js 中具有大数字的按位运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23915045/

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