12

刚发现Go,到目前为止我很好奇。我知道我只是懒惰,但我想知道是否可以在 if 语句中初始化多个变量。我知道以下是可能的:

if x := 5; x == 5 {
    fmt.Printf("Whee!\n")
}

我尝试了以下方法:

if x := 5, y := 38; x == 5 {
    fmt.Printf("Whee! %d\n", y)
}

if x := 5 && y := 38; x == 5 {
    fmt.Printf("Whee! %d\n", y)
}

但都没有奏效。我查看了 Go 网站上的文档,有什么我遗漏的或者这根本不可能吗?

4

2 回答 2

22

这是如何做到的:

package main

import (
    "fmt"
)

func main() {
    if x, y := 5, 38; x == 5 {
        fmt.Printf("Whee! %d\n", y)
    }
}


使用此版本进行测试:

changeset:   3975:b51fd2d6c160
tag:         tip
user:        Kevin Ballard <xxxxxxxxxxxxxxxxxxxxx>
date:        Tue Nov 10 20:05:24 2009 -0800
summary:     Implement new emacs command M-x gofmt
于 2009-11-11T22:12:10.713 回答
-2
package main
import("fmt")
func main() {
    if x, y := 5, 38; x == 5 {
        fmt.Printf("y = %d\n", y)
        fmt.Printf("x = %d\n", x)
    }
}

https://play.golang.org/p/Sbv6hUmKyA

于 2017-07-17T05:37:24.740 回答