mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 23:08:34 +08:00
04.3.md
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
该翻译版本已获得原作者(Ivo Balbaert)本人授权,并表示支持开源事业的发展!
|
||||
|
||||
##翻译进度
|
||||
3.9 [与其它语言进行交互](eBook/03.9.md)
|
||||
4.3 [常量](eBook/04.3.md)
|
||||
|
||||
##支持本书
|
||||
如果你喜欢本书《Go入门指南》,你可以参与到本书的翻译或纠正工作中来,具体请联系译者,一同完善本书并帮助壮大 Go 语言在国内的学习群体,给大家提供更好的学习资源。
|
||||
|
@@ -1,17 +1,3 @@
|
||||
##啊哦,亲,你看得也太快了。。。还没翻译完呢 0 0
|
||||
要不等到 ***2013 年 4 月 22 日*** 再来看看吧~~
|
||||
|
||||
这里还有一些其它的学习资源噢~
|
||||
|
||||
- [《Go编程基础》](https://github.com/Unknwon/go-fundamental-programming):已更新至 [第八课](https://github.com/Unknwon/go-fundamental-programming/blob/master/lecture8/lecture8.md)
|
||||
- [《Go Web编程》](https://github.com/astaxie/build-web-application-with-golang)
|
||||
|
||||
神马?你说你不想学习?那好吧,去逛逛论坛看看行情也行~
|
||||
|
||||
- [Golang中文社区](http://bbs.mygolang.com/forum.php)
|
||||
- [Go语言学习园地](http://studygolang.com/)
|
||||
- [Golang中国](http://golang.tc)
|
||||
|
||||
#3.9 与其它语言进行交互
|
||||
#3.9.1 与 C 进行交互
|
||||
工具 cgo 提供了对 FFI(外部函数接口)的支持,能够使用 Go 代码安全地调用 C 语言库,你可以访问 cgo 文档主页:[http://golang.org/cmd/cgo](http://golang.org/cmd/cgo)。cgo 会替代 Go 编译器来产生可以组合在同一个包中的 Go 和 C 代码。在实际开发中一般使用 cgo 创建单独的 C 代码包。
|
||||
|
21
eBook/04.4.md
Normal file
21
eBook/04.4.md
Normal file
@@ -0,0 +1,21 @@
|
||||
##啊哦,亲,你看得也太快了。。。还没翻译完呢 0 0
|
||||
要不等到 ***2013 年 4 月 22 日*** 再来看看吧~~
|
||||
|
||||
这里还有一些其它的学习资源噢~
|
||||
|
||||
- [《Go编程基础》](https://github.com/Unknwon/go-fundamental-programming):已更新至 [第八课](https://github.com/Unknwon/go-fundamental-programming/blob/master/lecture8/lecture8.md)
|
||||
- [《Go Web编程》](https://github.com/astaxie/build-web-application-with-golang)
|
||||
|
||||
神马?你说你不想学习?那好吧,去逛逛论坛看看行情也行~
|
||||
|
||||
- [Golang中文社区](http://bbs.mygolang.com/forum.php)
|
||||
- [Go语言学习园地](http://studygolang.com/)
|
||||
- [Golang中国](http://golang.tc)
|
||||
|
||||
#4.4 变量
|
||||
|
||||
|
||||
##链接
|
||||
- [目录](directory.md)
|
||||
- 上一节:[常量](04.3.md)
|
||||
- 下一节:[基本类型和运算符](04.5.md)
|
@@ -30,6 +30,8 @@
|
||||
- 4.1 [文件名、关键字与标识符](04.1.md)
|
||||
- 4.2 [Go 程序的基本结构和要素](04.2.md)
|
||||
- 4.3 [常量](04.3.md)
|
||||
- 4.4 [变量](04.4.md)
|
||||
- 4.5 [基本类型和运算符](04.5.md)
|
||||
- 第5章:[控制结构](05.0.md)
|
||||
- 5.1 [if-else 结构](05.1.md)
|
||||
- 第6章:函数(function)
|
||||
|
Reference in New Issue
Block a user