golang讲解(go语言)标准库分析之strings(3) 今天我们继续哈,争取我们把strings包这个东西给弄完了,这已经也有两天没有好好更新了,所以这两天更新的比较多补充前两天的 (1)func Title(s st... Go语言 2014年01月17日 0 点赞 0 评论 3899 浏览
golang讲解(go语言)标准库分析之os(5) [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天我们继续os包分析~~~木有废话~~ (1)os.Rename()... Go语言 2014年01月02日 0 点赞 0 评论 3196 浏览
GO(golang)语言学习(1) 1.导入包,一个主函数中只有一个main函数,包含一个main包,主函数中我们要申明main的包! package main func main(){ } 2.引入包文件,... Go语言 2013年08月02日 0 点赞 0 评论 2666 浏览
golang讲解(go语言)标准库分析之strings结束篇 今天我们完结了这个strings的包,其实我们就剩下了type Reader和type Replacer这个我们之间讲过io的包,这样大家理解起来就比较省劲了! ... Go语言 2014年01月20日 0 点赞 0 评论 4520 浏览
golang讲解(go语言)标准库分析之os(6) [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天我们讲golang标准库的os包type File struct{},还是... Go语言 2014年01月03日 0 点赞 0 评论 3183 浏览
GO语言学习之数组 1.申明一个数组 var a[2] int 或者 a:=[2]int{1,2} 2.数组索引 数组就是索引的来建立如下图 我们再来一个测试 3.go语言可以自动计算数组... Go语言 2013年08月03日 0 点赞 0 评论 2709 浏览
golang讲解(go语言)标准库分析之os/user os/signal (os包完结篇) 今天我们讲golang os包的最后两个包user、signal os/user包 (1)type UnknownUserError string其中这个里边有一个方法func (e UnknownUserError... Go语言 2014年01月07日 3 点赞 0 评论 3377 浏览
GO语言(golang)切片slice 切片slice是引用类型 len()函数获取元素的个数 cap()获取数组的容量 1.申明方式 (1)var a []int 与数组不同的是他不申明长度 (2)s2 ... Go语言 2013年08月06日 0 点赞 0 评论 2686 浏览
golang讲解(go语言)标准库分析之io(2) 今天我们继续讲golang的io的标准库 [1]type PipeReader type PipeReader struct { // contains filtered or unexported ... Go语言 2014年01月09日 0 点赞 0 评论 3216 浏览
Go语言结构struct 1.struct 简洁 这个的struct和C语言的很相似,模拟出class的功能,但是不完全的!没有构造函数等! 2.struct的申明 package main import ... Go语言 2013年08月07日 0 点赞 0 评论 2736 浏览