linux
文章平均质量分 64
MarvinHe
这个作者很懒,什么都没留下…
展开
-
CentOS安装吐槽
centos 安装 postgresql, redis, nginx过程中的吐槽。原创 2015-01-24 20:55:15 · 956 阅读 · 0 评论 -
Go学习笔记
Go语言 特性 赞美之词 Chapter1 tips Chatper2 基本语法 特殊保留关键字 tips 变量申请 built-in types 流程控制 if for break goto 都可支持标签 switch fallthrough func函数定义 defer 延迟 panic recover try catch import操作 struct 自定义类型Go语言特性:极简语法,原原创 2015-08-20 17:12:34 · 797 阅读 · 0 评论 -
Go学习笔记(2)
Go语言 interface 并发 channel Buffered ChannelsGo语言interface一组method的组合type Men interface { SayHi() Sing(lirics string) } var i Men i = mike 只要实现了interface中的所有函数的struct都可赋值给i; 把 interface 作为 函数的参数,即可原创 2015-08-21 11:59:13 · 771 阅读 · 0 评论