码迷,mamicode.com
首页 >  
搜索关键字:chan    ( 331个结果
GO语言练习:channel select 超时机制
1、代码2、运行3、解析1、代码 1 package main 2 3 import ( 4 "time" 5 "fmt" 6 ) 7 8 func waitFor(ch chan int) { 9 fmt.Println(time.Now(), "writing ......
分类:编程语言   时间:2015-07-19 01:23:25    阅读次数:130
GO语言练习:channel 缓冲机制
1、代码2、运行3、解析1、代码 buffer.go 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 func readThread(ch chan int) { 9 fmt.Println("read for r...
分类:编程语言   时间:2015-07-18 10:47:00    阅读次数:136
yate学习--关于yrtpchan模块
转载请声明出处:http://blog.csdn.net/u012377333     本文简介:yrtpchan是一个关于yate自定义的处理rtp协议的模块(关于rtp协议的知识,大家可以网上百度、谷歌)。本文主要是对于yrtpchan处理rtp.chan消息做了简要的分析和理解。     对于yate的每个模块如何去分析和查看(因为没有main函数和其他的函数调用该模块的函数,所...
分类:其他好文   时间:2015-07-02 22:42:09    阅读次数:310
Netty4 之 简单搭建HTTP服务
server.HttpServer.javapackageserver; importio.netty.bootstrap.ServerBootstrap; importio.netty.channel.ChannelFuture; importio.netty.channel.ChannelInitializer; importio.netty.channel.ChannelOption; importio.netty.channel.EventLoopGroup; importio.netty.chan..
分类:Web程序   时间:2015-06-29 20:39:46    阅读次数:330
一个用 C 语言写的迷你版 2048 游戏,只有 500个字符
Jay Chan 用 C 语言写的一个迷你版 2048 游戏,只有 487 个字符。来围观吧 M[16],X=16,W,k;main(){T(system("stty cbreak") );puts(W&1?"WIN":"LOSE");}K[]={2,3,1};s(f,d,i ,j,l,P){for(i=4;i--;)for(j=k=l=0;k<4;)j<4?P=M [w(d,i,j++)]...
分类:编程语言   时间:2015-06-29 06:33:20    阅读次数:170
简洁版2048
code: 1 // Original file by Jay Chan: 2 // https://gist.github.com/justecorruptio/9967738 3 4 #include 5 #include 6 #include 7 #include 8...
分类:其他好文   时间:2015-06-27 15:57:31    阅读次数:137
golang chan 发送接收测试数据
测试代码: package main import ( "fmt" "time" ) const ( num = 10000000 // 测试1千万次发送和接收 ) func main() { TestChan2() } func TestChan2() { st := time.N...
分类:其他好文   时间:2015-06-19 10:10:49    阅读次数:137
做了个实验,给一千万个随机数排序,用了24秒.不过内存使用有些高,下面是代码.使用的是双核.
maste.go package main import ( "fmt" "os" "runtime" "test" "time" ) var x chan []int = make(chan []int, 1) var Num int = 100 var WNum int = 100 func main() { fmt.Println(time.Now()) var lis...
分类:编程语言   时间:2015-06-18 11:45:44    阅读次数:152
Go语言排序一千万个随机数.开的双核.用了120秒,不知道怎么优化.
package main import ( "fmt" "os" "runtime" "test" "time" ) var x chan []int = make(chan []int, 1) var Num int = 10 var WNum int = 100 func main() { fmt.Println(time.Now()) var list1, list2 [...
分类:编程语言   时间:2015-06-17 21:43:44    阅读次数:113
opencv中ptr的使用
#include #include#include#includeusing namespace cv;void colorReduce(Mat &image,int div =64){ int nl = image.rows; int nc =image.cols*image.chan...
分类:其他好文   时间:2015-06-17 10:51:38    阅读次数:239
331条   上一页 1 ... 25 26 27 28 29 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!