Golang溢出int64

前端之家收集整理的这篇文章主要介绍了Golang溢出int64前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用此代码,但给了我一个错误:常量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

原文链接:https://www.f2er.com/go/242051.html

猜你在找的Go相关文章