我正在阅读此文档,并看到以下片段::=语法是声明和初始化变量的简写形式,例如,在这种情况下,对于var f string =“ short”。f := "short"fmt.Println(f)关键是:它仅适用于字符串吗?还是足以理解应该存储哪种数据类型?另外:是var f = "short"吗?
1 回答
临摹微笑
TA贡献1982条经验 获得超2个赞
当然,它可以推断出右侧表达式返回的明显类型。
该规范给出了这些例子:
i, j := 0, 10
f := 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表达式指定。
- 1 回答
- 0 关注
- 239 浏览
添加回答
举报
0/150
提交
取消