使用strconv.ParseInt和int的惯用方法

时间:2013-07-15 16:23:17

标签: go strconv

我最终编写了这样的代码。我需要一个常规的int(对于其他一些函数调用),但是parseInt只生成64位整数:

i64, err := strconv.ParseInt(s, 10, 0)
if err != nil {
    fmt.Println("parsing failed for", s)
}
i := int(i64)

http://play.golang.org/p/_efRm7yp3o

有没有办法避免额外演员?还是一种让这更加惯用的方法?

2 个答案:

答案 0 :(得分:3)

您可以使用strconv.Atoi以您想要的方式包装strconv.ParseInt

答案 1 :(得分:0)

使用strconv.ParseInt

bitSize parameter
package main

import (
        "fmt"
        "strconv"
)

// 32 or 64 depending on platform
const IntBits = 1 << (^uint(0)>>32&1 + ^uint(0)>>16&1 + ^uint(0)>>8&1 + 3)

func printInt(i int) {
        fmt.Println(i)
}

func main() {
        s := "-123123112323231231"
        i64, err := strconv.ParseInt(s, 10, IntBits)
        if err != nil {
                fmt.Println("parsing failed for ", s)
        }
        i := int(i64)
        printInt(i)

        i64, err = strconv.ParseInt(s, 10, 32)
        if err != nil {
                fmt.Println("parsing failed for ", s)
        }
        i = int(i64)
        printInt(i)
}

Playground


输出

-123123112323231231
parsing failed for  -123123112323231231
-2147483648