为了账号安全,请及时绑定邮箱和手机立即绑定

golang将math.MinInt64字符串转换为int失败

golang将math.MinInt64字符串转换为int失败

Go
30秒到达战场 2021-12-07 09:21:54
给定以下功能:func convertValue(contents string) (int, error) {    return strconv.Atoi(contents)}当我运行以下测试时var convertValues = []struct {    contents string    value int}{    {"9223372036854775807", math.MaxInt64},    {"−9223372036854775808", math.MinInt64},}func TestConvertValue(t *testing.T) {    for _, values := range convertValues {        value, err := convertValue(values.contents)        if err != nil {            t.Error("Expecting", values.value, "but got error", err.Error())        }        if value != values.value {            t.Error("Expecting ", values.value, ", but got ", value)        }    }}它适用于 MaxInt64,但不适用于 MinInt64。我在 MacBookPro 上运行它,所以它在 64 位上运行。我已经用以下内容仔细检查了这一点func TestIntSize(t *testing.T) {    const PtrSize = 32 << uintptr(^uintptr(0)>>63)    fmt.Println(runtime.GOOS, runtime.GOARCH)    fmt.Println(strconv.IntSize, PtrSize)}它返回了darwin amd6464 64我究竟做错了什么?
查看完整描述

1 回答

?
慕姐4208626

TA贡献1852条经验 获得超7个赞

https://play.golang.org/p/FtytYJkHSc

切换到 strconv.ParseInt 并明确使用 int64 作为类型似乎有所帮助。我的 MinInt64 字符串中的破折号也有问题,这可能就在我的最后,但值得检查并确保它是基本的 ASCII 字符,而不是某种 Unicode 破折号。


查看完整回答
反对 回复 2021-12-07
  • 1 回答
  • 0 关注
  • 238 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信