猿问

误解:=在Go中的用法

我正在阅读此文档,并看到以下片段:


:=语法是声明和初始化变量的简写形式,例如,在这种情况下,对于var f string =“ short”。


f := "short"

fmt.Println(f)

关键是:它仅适用于字符串吗?还是足以理解应该存储哪种数据类型?


另外:是var f = "short"吗?


ABOUTYOU
浏览 240回答 1
1回答

临摹微笑

当然,它可以推断出右侧表达式返回的明显类型。该规范给出了这些例子:i, j := 0, 10f := func() int { return 7 }ch := make(chan int)r, w := os.Pipe(fd)  // os.Pipe() returns two values_, y, _ := coord(p)  // coord() returns three values; only interested in y coordinate请注意,它不是动态的:一切都在编译时发生,类型由正确的part表达式指定。
随时随地看视频慕课网APP

相关分类

Go
我要回答