gpt4 book ai didi

Golang 溢出 int64

转载 作者:IT王子 更新时间:2023-10-29 01:18:32 26 4
gpt4 key购买 nike

我尝试使用此代码,但出现错误:常量 100000000000000000000000 溢出 int64

我该如何解决?

// Initialise big numbers with small numbers
count, one := big.NewInt(100000000000000000000000), big.NewInt(1)

最佳答案

例如:

count,one := new(big.Int), big.NewInt(1)
count.SetString("100000000000000000000000",10)

链接: http://play.golang.org/p/eEXooVOs9Z

关于Golang 溢出 int64,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30833314/

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