Golang:将uint8转换为字符串

前端之家收集整理的这篇文章主要介绍了Golang:将uint8转换为字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
http://play.golang.org/p/BoZkHC8_uA

我想将uint8转换为字符串,但无法弄清楚如何.

package main

  import "fmt"
  import "strconv"

  func main() {

    str := "Hello"
    fmt.Println(str[1])  // 101

    fmt.Println(strconv.Itoa(str[1]))
  }

这给了我prog.go:11:不能在函数参数中使用str [1](类型uint8)作为int类型
[进程以非零状态退出]

任何的想法?

简单 convert it
fmt.Println(strconv.Itoa(int(str[1])))
原文链接:https://www.f2er.com/go/186952.html

猜你在找的Go相关文章