2013年9月10日
摘要: 1 package main 2 3 import "fmt" 4 5 type Vector []float64 6 7 func (v Vector) DoSome(i,n int, u Vector, c chan float64) { 8 var sum float64 9 for ; i<n; i++ {10 sum += u[i]11 }12 c <- sum 13 }14 15 const NCPU = 216 17 func (v *Vector) DoAll(u Vector) {18 c := make(chan float64, NC... 阅读全文
posted @ 2013-09-10 18:10 笔记吧... 可能只有自己看得懂 阅读(833) 评论(0) 推荐(0) 编辑
摘要: |------ |------- |-------manager.go |-------manager_test.go |------- |-------play.go |-------mp3.go |-------wav.go |-------- |-------mplayer.go |------ |-----------------------------------------------------------... 阅读全文
posted @ 2013-09-10 13:54 笔记吧... 可能只有自己看得懂 阅读(1354) 评论(0) 推荐(0) 编辑