标签: go
Go中有简短的版本可以反转布尔值吗?
代替:
b := true if b { b = false } else { b = true }
答案 0 :(得分:7)
是的,只需执行b = !b。这是playground link,您可以在其中查看其运行情况。
b = !b