如果您不知道,在本教程中有一些要点会让您自己一个线索或链接。因此,我对这些内容的长度感到抱歉:http://tour.golang.org/#15Try printing needInt(Big) too我猜int允许的位数少于常量吗?http://tour.golang.org/#21the { } are required.
(Sound familiar?)提到哪种语言?http://tour.golang.org/#25(And a type declaration does what you'd expect.)为什么我们需要单词type和单词struct?我应该期待什么?http://tour.golang.org/#28为什么在构造函数中隐式零?这听起来像Go的一个危险的设计选择。在此是否有PEP或http://golang.org/doc/go_faq.html以外的其他内容?http://tour.golang.org/#30Make?有构造函数吗?new和之间有什么区别make?http://tour.golang.org/#33哪里delete来的?我没有导入。http://tour.golang.org/#36什么是%v格式化立场?价值?http://tour.golang.org/#47panic: runtime error: index out of rangegoroutine 1 [running]:tour/pic.Show(0x400c00, 0x40ca61) go/src/pkg/tour/pic/pic.go:24 +0xd4main.main() /tmpfs/gosandbox-15c0e483_5433f2dc_ff6f028f_248fd0a7_d7c2d35b/prog.go:14 +0x25我想我以某种方式破产了...package mainimport "tour/pic"func Pic(dx, dy int) [][]uint8 { image := make([][]uint8, 10) for i := range image { image[i] = make([]uint8, 10) } return image}func main() { pic.Show(Pic)}http://tour.golang.org/#59函数失败时我返回错误值吗?我必须通过错误检查来限定每个函数调用吗?当我编写疯狂的代码时,程序的流程是不间断的?例如Copy(only_backup, elsewhere);Delete(only_backup),复制失败。他们为什么要这样设计?
2 回答
- 2 回答
- 0 关注
- 228 浏览
添加回答
举报
0/150
提交
取消