doutuohan6606 2016-03-02 09:15
浏览 1582
已采纳

如何在Go lang的uint16中转换字符串值?

I'm researching a solution in order to convert a string (in my case the string is "05f8") into a uint16.I made research but I don't find a solution.Does anyone know how to do this?

Thanks for your help!

  • 写回答

1条回答 默认 最新

  • douchilian1009 2016-03-02 09:25
    关注

    Use strconv.ParseUint (doc).

    var s = "05f8"
    var base = 16
    var size = 16
    value, err := strconv.ParseUint(s, base, size)
    

    Note that the output value is an uint64, you have to cast it to you type before using it.

    Note (bis) that the size parameter control the maximum size of the uint to convert to, so the overflow check is done correctly.

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部