如何将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: cannot use str[1] (type uint8) as type int in function

argument [process exited with non-zero status]

任何想法?

回答:

只需将其转换:

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

以上是 如何将uint8转换为字符串 的全部内容, 来源链接: utcz.com/qa/420243.html

回到顶部