```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代码与Python 无法比较, GO ping的是202.102.201.* 网段,python ping 的是172.16.100.*网段, 一致. 不同网段延迟不一样没法比较啊. 我测试的如果是同一个网段GO比Python要快1s,但是我使用的是虚拟机是单核环境,无法发挥GO的并发效果. 如果是多核的话,GO会比Python更快
GO
----------------------
real 0m9.777s
user 0m0.816s
sys 0m7.296s
Python
------------------------
real 0m10.050s
user 0m0.612s
sys 0m6.612s
#10
更多评论