作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在尝试将名为 isExist
的 bool
转换为 string
(true
或 false
) 使用 string(isExist)
但它不起作用。在 Go 中执行此操作的惯用方式是什么?
最佳答案
使用 strconv 包
strconv.FormatBool(v)
func FormatBool(b bool) string FormatBool returns "true" or "false"
according to the value of b
关于go - 如何在 Go 中将 bool 值转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38552803/
我是一名优秀的程序员,十分优秀!