程序实践
文章平均质量分 93
tomyleee
中山大学数据科学与计算机学院2015级软件工程
https://github.com/Tomy-Lee
http://tomylijia.com
展开
-
使用golang开发selpg命令行程序
Selpg Selpg is a utility that selects page range from text input. The input can come from the file specified as the last command line parameter, and can also be from standard input when no file name原创 2017-10-19 12:51:36 · 476 阅读 · 0 评论 -
Martini框架初学与源码解读
Martini框架是使用Go语言作为开发语言的一个强力的快速构建模块化web应用与服务的开发框架。一、安装go get github.com/codegangsta/martini二、使用可以使用如下的代码来测试我们安装的包是否可用:server.gopackage mainimport "github.com/codegangsta/martini"func main() { m := mar原创 2017-11-13 18:42:45 · 716 阅读 · 0 评论 -
golang语言乱谈之Interface
Go不是典型的OO语言,它在语法上不支持类和继承的概念。但是Go语言引入了一种新类型—Interface,它在效果上实现了类似于C++的“多态“。Go语言官网对于Interface类型的描述是: An interface type specifies a method set called its interface. A variable of interface type can store原创 2017-11-05 19:52:55 · 302 阅读 · 0 评论