我正在尝试通过使用bool将称为isExiststring转换为true(falsestring(isExist)),但是它不起作用。 Go中惯用的方式是什么?

最佳答案

使用strconv包

docs
strconv.FormatBool(v)

10-06 13:16