golang写出来的程序为什么那么慢

cnchanghai · · 4246 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

```go package main import ( "fmt" "sync" "runtime" "os/exec" "strconv" ) var counter int =0 var thcounter int = 0 func pings(ips string,lock *sync.Mutex){ c :=exec.Command("ping",ips,"-c 1 -W 1") err:=c.Run() if err ==nil { lock.Lock() counter = counter+1 fmt.Printf("ip addr%s is ok\n",ips) thcounter +=1 lock.Unlock() }else{ lock.Lock() thcounter +=1 lock.Unlock() } } func main(){ runtime.GOMAXPROCS(8) lock :=&sync.Mutex{} for i:=1;i<254;i+=1{ ips :="202.102.201."+strconv.Itoa(i) go pings(ips,lock) } for{ lock.Lock() c :=thcounter lock.Unlock() runtime.Gosched() if c>=253 { fmt.Println(counter) break } } } ``` 上面的代码执行起来 需要耗时 10秒多 详情如下: real 0m10.705s user 0m10.481s sys 0m0.514s 而我写的python 只需要不到3秒钟就可以搞定了 希望大神帮我看看,为什么这个代码那么的慢

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

4246 次点击  
加入收藏 微博
10 回复  |  直到 2015-04-20 16:16:16
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传