douzhi4830 2013-12-02 04:44
浏览 68
已采纳

将长字符串转换为int64-Go

I am finding the way to cast an integer number in a long string format to int64 in Go. I used strconv.Atoi but it gave me an error said "value out of range". I searched for the answer I found

ParseInt(s string, base int, bitSize int) (i int64, err error)

in strconv package. However, I don't understand what value should I provide for the function arguments including base and bitSize.

I am trying to parse datastore.Key.IntID() in string format that I received from HTTP request back to int64 for creating new keys to perform query on Datastore.

Could anyone explain me a bit about the base and bitSize arguments and what values should I provide in the arguments in this case?

  • 写回答

1条回答 默认 最新

  • dougu2240 2013-12-02 04:59
    关注

    func ParseInt

    func ParseInt(s string, base int, bitSize int) (i int64, err error)
    

    ParseInt interprets a string s in the given base (2 to 36) and returns the corresponding value i. If base == 0, the base is implied by the string's prefix: base 16 for "0x", base 8 for "0", and base 10 otherwise.

    The bitSize argument specifies the integer type that the result must fit into. Bit sizes 0, 8, 16, 32, and 64 correspond to int, int8, int16, int32, and int64.

    The errors that ParseInt returns have concrete type *NumError and include err.Num = s. If s is empty or contains invalid digits, err.Err = ErrSyntax; if the value corresponding to s cannot be represented by a signed integer of the given size, err.Err = ErrRange.

    For example,

    package main
    
    import (
        "fmt"
        "strconv"
    )
    
    func main() {
        s := "9223372036854775807"
        i, err := strconv.ParseInt(s, 10, 64)
        if err != nil {
            fmt.Println(err)
            return
        }
        fmt.Println(i)
    }
    

    Output:

    9223372036854775807
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了