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 评论 3293 浏览
GO语言学习之数组 1.申明一个数组 var a[2] int 或者 a:=[2]int{1,2} 2.数组索引 数组就是索引的来建立如下图 我们再来一个测试 3.go语言可以自动计算数组... Go语言 2013年08月03日 0 点赞 0 评论 3057 浏览
Golang语言标准库http/url的Values的详细介绍 [caption id="attachment_902" align="alignnone" width="300"] Golang标准库http/url Values[/caption] 今天我们更新文章,主要推广的还... Go语言 2013年12月25日 1 点赞 0 评论 4641 浏览
golang基础知识 今天说一些golang的基础知识,还有你们学习会遇到的问题,先讲解hello word package main import "fmt" func main() { fmt.... Go语言 2013年07月12日 0 点赞 0 评论 2977 浏览
golang讲解(go语言)标准库分析之strings结束篇 今天我们完结了这个strings的包,其实我们就剩下了type Reader和type Replacer这个我们之间讲过io的包,这样大家理解起来就比较省劲了! ... Go语言 2014年01月20日 0 点赞 0 评论 4900 浏览
golang讲解(go语言)标准库分析之os(7) [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天我们继续讲golang标准库的os包,依然是没有... Go语言 2014年01月04日 0 点赞 0 评论 3365 浏览
Go语言结构struct 1.struct 简洁 这个的struct和C语言的很相似,模拟出class的功能,但是不完全的!没有构造函数等! 2.struct的申明 package main import ... Go语言 2013年08月07日 0 点赞 0 评论 3034 浏览
golang讲解(go语言)标准库分析之string开篇 今天我们继续讲golang标准库的string这个包,我选定这个是看了下别的包真的需要这个功能所以我们来这个包,string包实现了简单的函数方法来... Go语言 2014年01月14日 0 点赞 0 评论 3477 浏览
golang讲解(go语言)标准库分析之os(3) [caption id="attachment_902" align="alignnone" width="300"] Golang标准库[/caption] 今天人我们继续分析os包,这个包其实很多估计还待几... Go语言 2013年12月31日 0 点赞 0 评论 3674 浏览
GO(golang)语言学习(1) 1.导入包,一个主函数中只有一个main函数,包含一个main包,主函数中我们要申明main的包! package main func main(){ } 2.引入包文件,... Go语言 2013年08月02日 0 点赞 0 评论 2966 浏览