给大家丢脸了,用了三年golang,我还是没答对这道内存泄漏题。
问题packagemainimport("fmt""ioioutil""nethttp""runtime")funcmain(){num:6forindex:0;index<num;index++{resp,:http.Get("https:www.baidu.com"),ioutil.ReadAll(resp.Body)}fmt.Printf("此时goroutine个数%d\n",runtime.NumGoroutine())}上面这道题在不执行resp.Body.Close()的情况下,泄漏了吗?如果泄漏,泄漏了多少个goroutine怎么答不进行resp.Body.Close(),泄漏是一定的。但是泄漏的goro...