原文: 计划中的新特征:http://golang.org/s/go13todo 目前的进展情况:http://talks.golang.org/2014/go1.3.slide golang 1.3代码将在3.1冻结,6.1发布。 1、100% percise GC GC是垃圾回收器,percise GC不知道...
分类:
其他好文 时间:
2014-11-20 12:18:05
阅读次数:
181
在网上搜索golang编码转化时,我们经常看到的文章是使用下面一些第三方库: https://github.com/djimenez/iconv-go https://github.com/qiniu/iconv 如果我们在windows下使用这个库,会看到错误: iconv.go:6:20: fa...
分类:
其他好文 时间:
2014-11-19 15:34:38
阅读次数:
710
本文同步至 [http://www.waylau.com/go-websocket-chat/](http://www.waylau.com/go-websocket-chat/) 这个示例应用程序展示了如何使用 [WebSocket](http://tools.ietf.org/html/rfc6455), [Golang](http://golan...
分类:
Web程序 时间:
2014-11-19 11:39:10
阅读次数:
384
Go by Example: Constants...
分类:
其他好文 时间:
2014-11-19 11:31:47
阅读次数:
158
Go by Example: Constants...
分类:
其他好文 时间:
2014-11-19 01:31:16
阅读次数:
142
简单整理一下Golang的基本类型转换,作为备忘;1、整形到字符串:variint=1varsstring 3. s=strconv.Itoa(i)或者s=FormatInt(int64(i),10) 2、字符串到整形varsstring="1"variinti,err=strconv.Atoi.....
分类:
编程语言 时间:
2014-11-18 23:33:10
阅读次数:
243
现在再搞golang,用go get github.com/xxx 命令使需要git、提交新项目到github.com也要git,老东西了,呵呵现在也要学习一下。下载windows版的git。·准备工作设置默认用户名、邮箱:gitconfig--globaluser.name"YourName" ....
比如有这样一个对象: type ProductConfig struct { Site map[string]string } 对应的初始化可以如下写: var pc ProductConfig pc = ProductConfig{Site: map[string]string{"rakuten"...
分类:
其他好文 时间:
2014-11-15 11:23:47
阅读次数:
188
1,判断奇偶 for?i?:=?0;?i?<?100;?i++?{
????if?i?%?2?==?0?{
????????println(i)
????}
????if?i?&?0x1?==?0?{
????????println(i)
????}
} 2,交换两个数...
分类:
其他好文 时间:
2014-11-14 00:22:49
阅读次数:
206
冒泡排序 func?BubbleSort(vector?[]int)?{
????fmt.Println("BubbleSort")
????fmt.Println(vector)
????for?i?:=?0;?i?<?len(vector);?i++?{
????????tag?:=?true?//?为了剪...
分类:
编程语言 时间:
2014-11-13 01:53:40
阅读次数:
214