美文网首页
Converting Integer to String in

Converting Integer to String in

作者: robertzhai | 来源:发表于2023-01-03 10:52 被阅读0次

    错误

    naive typecasting

    import (
        "fmt"
    )
    
    func main() {
        a := 1234
        
        // we want "1234"
        fmt.Println(string(a))     // Ӓ
    }
    

    正确

    strconv
    Sprintf

    相关文章

      网友评论

          本文标题:Converting Integer to String in

          本文链接:https://www.haomeiwen.com/subject/fxclcdtx.html