golang讲解(go语言)标准库分析之io.ioutil [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天我们讲解的是golang标准库里边的io/ioutil包--... Go语言 2013年12月27日 0 点赞 0 评论 2966 浏览
GO语言学习之数组 1.申明一个数组 var a[2] int 或者 a:=[2]int{1,2} 2.数组索引 数组就是索引的来建立如下图 我们再来一个测试 3.go语言可以自动计算数组... Go语言 2013年08月03日 0 点赞 0 评论 2710 浏览
golang讲解(go语言)标准库分析之io(2) 今天我们继续讲golang的io的标准库 [1]type PipeReader type PipeReader struct { // contains filtered or unexported ... Go语言 2014年01月09日 0 点赞 0 评论 3217 浏览
golang讲解(go语言)标准库分析之os(3) [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天人我们继续分析os包,这个包其实很多估计还待几... Go语言 2013年12月31日 0 点赞 0 评论 3317 浏览
GO语言(golang)切片slice 切片slice是引用类型 len()函数获取元素的个数 cap()获取数组的容量 1.申明方式 (1)var a []int 与数组不同的是他不申明长度 (2)s2 ... Go语言 2013年08月06日 0 点赞 0 评论 2687 浏览
golang讲解(go语言)标准库分析之string开篇 今天我们继续讲golang标准库的string这个包,我选定这个是看了下别的包真的需要这个功能所以我们来这个包,string包实现了简单的函数方法来... Go语言 2014年01月14日 0 点赞 0 评论 3143 浏览
Go语言(golang)环境的搭建--ubuntu篇 Go语言是谷歌2009发布的第二款开源编程语言。Go语言专门针对 多处理器系统应用程序的编程进行了优化,使用Go编译的程序可以媲美C或C++代码的速... Go语言 2013年07月07日 0 点赞 0 评论 2544 浏览
golang讲解(go语言)标准库分析之os(4) [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天我们继续说os包,OK我们直接来 (1)os.Mkdir创建单... Go语言 2014年01月01日 0 点赞 0 评论 2976 浏览
Go语言结构struct 1.struct 简洁 这个的struct和C语言的很相似,模拟出class的功能,但是不完全的!没有构造函数等! 2.struct的申明 package main import ... Go语言 2013年08月07日 0 点赞 0 评论 2736 浏览
golang讲解(go语言)标准库分析之strings(2) 其实我也不明白是什么让我坚持下来一点一点的分析pkg包,但是分析的时候我感觉还是很高兴的!今天我们继续strings包 (1)func Index... Go语言 2014年01月16日 0 点赞 0 评论 3295 浏览