小编典典

如何在Go中将布尔值转换为字符串?

go

我想转换一个boolisExiststringtruefalse使用),string(isExist)但它不能做的工作。Go中惯用的方式是什么?


阅读 312

收藏
2020-07-02

共1个答案

小编典典

使用strconv包

docs

strconv.FormatBool(v)

func FormatBool(b bool)字符串Formatbool
根据b的值返回“ true”或“ false”

2020-07-02