码迷,mamicode.com
首页 >  
搜索关键字:chan    ( 331个结果
mysql数据库语言分类
数据定义语言:Datadefinitionlanguage,简称DDL,其包括createdropalter等语句Createtable/database表名/数据库名;Droptable表名;(记录和结构都被删除)Altertable表名addcolumn新增加的列名类型;Altertable表名modify列名类型;(修改表当中列的属性)Altertable表名chan..
分类:数据库   时间:2015-08-02 06:41:25    阅读次数:199
HDOJ 5318 The Goddess Of The Moon 矩阵快速幂
The Goddess Of The Moon Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 540    Accepted Submission(s): 215 Problem Description Chan...
分类:其他好文   时间:2015-07-29 16:00:30    阅读次数:151
当前栏目添加样式
织梦channelartlist标签当前栏目高亮时间:2013-09-29来源:未知 作者:秀站网channelartlist标签完美支持currentstyle属性,实现自动加载当前栏目CSS样式,可 以用来标识当前栏目位置的CSS,解决方法如下: 打开文件 include\taglib\chan...
分类:其他好文   时间:2015-07-28 10:29:16    阅读次数:103
Go Programming Blueprints 读书笔记(谈到了nsq/mgo处理数据持久化,但是业务逻辑不够复杂)
Go Programming Blueprints http.Handle("/", &templateHandler{filename: "chat.html"}); http.Handle静态方法?带参数的函数对象参数? 就是个普通的struct——为何不需要new? go get github.com/gorilla/websocket(方便的包依赖管理...
分类:其他好文   时间:2015-07-26 12:42:18    阅读次数:143
LeetCode#27 Remove Element
Problem Definition:Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be chan...
分类:其他好文   时间:2015-07-24 22:29:06    阅读次数:148
go 语言学习之:chan
chan 是什么 一个变量,但这个变量有点特殊:创建之后,如果不设置它的话,读它的地方会阻塞。 通过这样一种特性实现了 goroutine 的通信。 缓冲机制 c := make(chan int , 1024) ? 后面的 1024就是指的缓冲区的...
分类:编程语言   时间:2015-07-24 19:01:26    阅读次数:369
Effective Go(官方文档)笔记
Effective Go(官方文档)笔记 自动局部变量提升(编译期完成?):return &...;内置函数: new/makecopy, appenddeleterange(这是关键字吧?因为后面没有()) array是值对象slice:引用array 2维切片(略) map if seconds, ok := timezone[tz]; ok {...
分类:其他好文   时间:2015-07-24 18:23:47    阅读次数:144
golang轮询机制select的理解
func?main()?{ c?:=?make(chan?int) quit?:=?make(chan?int) go?func()?{ for?i?:=?0;?i?<?10;?i++?{ fmt.Println(<-c) } quit?<-?0 }() fibonacci(c,?quit) } //select的...
分类:其他好文   时间:2015-07-24 16:20:29    阅读次数:235
go的channel的使用
func?Count(ch?chan?int)?{ counter++ ch?<-?counter fmt.Println("Counting") } func?main()?{ chs?:=?make([]chan?int,?10) for?i?:=?0;?i?<?10;?i++?{ chs[i]?=?make(chan?int...
分类:其他好文   时间:2015-07-21 19:08:35    阅读次数:152
单片机SD 卡读写
1.迄今为止看到的最详细的关于SD卡SPI mode的分析和代码http://elm-chan.org/docs/mmc/mmc_e.html2.转载http://blog.csdn.net/ming1006/article/details/7281597现在我们手机的内存卡多为Micro SD卡,...
分类:其他好文   时间:2015-07-20 19:24:37    阅读次数:118
331条   上一页 1 ... 24 25 26 27 28 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!