0 { fmt.Println(j) -6ren">
gpt4 book ai didi

syntax - 为什么在if条件中加括号会导致编译错误?

转载 作者:IT王子 更新时间:2023-10-29 02:27:53 24 4
gpt4 key购买 nike

以下 Go 代码运行正常:

package main

import "fmt"

func main() {
if j := 9; j > 0 {
fmt.Println(j)
}
}

但是条件中加括号后:

package main

import "fmt"

func main() {
if (j := 9; j > 0) {
fmt.Println(j)
}
}

编译错误:

.\Hello.go:7: syntax error: unexpected :=, expecting )
.\Hello.go:11: syntax error: unexpected }

为什么编译器会提示呢?

最佳答案

答案不仅仅是“因为 Go 不需要括号”;请看以下示例是有效的 Go 语法:

j := 9
if (j > 0) {
fmt.Println(j)
}

Go Spec: If statements:

IfStmt = "if" [ SimpleStmt ";" ] Expression Block [ "else" ( IfStmt | Block ) ] .

我的示例与您的示例之间的区别在于我的示例仅包含表达式 block 。表达式可以根据需要加括号(它的格式不会很好,但这是另一个问题)。

在您的示例中,您同时指定了 Simple 语句和 Expression block 。如果将整体放在括号中,编译器将尝试将整体解释为 Expression Block to which this does not qualify :

Expression = UnaryExpr | Expression binary_op UnaryExpr .

j > 0 是一个有效的表达式,j := 9; j > 0 不是有效的表达式。

即使 j := 9 本身也不是一个表达式,它是一个 Short variable declaration .此外,简单的赋值(例如 j = 9)在 Go 中不是表达式而是语句(Spec: Assignments)。请注意,赋值通常是其他语言(如 C、Java 等)中的表达式)。这就是为什么例如以下代码也是无效的原因:

x := 3
y := (x = 4)

关于syntax - 为什么在if条件中加括号会导致编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30929477/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com