在Go中将bigint转换为字符串

如何在Golang中将大整数转换为字符串(或整数)?

bigint := big.NewInt(123) //This is what I have

bigstr = "123" //This is what I want

回答:

只需使用以下String方法:http :

//golang.org/pkg/math/big/#Int.String

bigint := big.NewInt(123)

bigstr := bigint.String()

以上是 在Go中将bigint转换为字符串 的全部内容, 来源链接: utcz.com/qa/430474.html

回到顶部