golang中if语句错误中缺少条件

我有这个 if 语句没有正确评估:


// Take advantage of Boolean short-circuit evaluation

if h != 2 && h != 3 && h != 5 && h != 6 && h != 7 && h != 8

{

    fmt.Println("Hello")

}

return 0

这是错误信息 -


missing condition in if statement

我已经尝试将条件放在括号等中。


catspeake
浏览 185回答 2
2回答

MYYA

您需要将 放在{的末尾if:if h != 2 && h != 3 && h != 5 && h != 6 && h != 7 && h != 8 {    fmt.Println("Hello")}return 0

沧海一幻觉

您必须像这样在 if 条件之后立即放置 Curly Braches:正确的例子if(condition){<code comes here>}错误的例子if(condition){<code comes here>}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go