不必要的 else不必要的 else如果一个变量在 if 的两个分支中都设置了,那应该使用单个 if 。 BadGood var a intif b { a = 100} else { a = 10} a := 10if b { a = 100}