golang
已收录文章:10852篇
-
在 go 的标准库中,提供了 sync.Cond 这个并发原语,让我们可以实现多个 goroutine 等待某一条件满足之后再继续执行。 它需要配合 sync.Mutex 一起使用,因为 Cond 的 Wait 方法需要在 Mutex 的保护下才491 收藏
-
问题内容 我很新,我正在玩这个通知包。 起初我的代码看起来像这样: func doit(w http.ResponseWriter, r *http.Request) { notify.Post("my_event", "Hello World!") fmt.Fprint(w, "+OK") }491 收藏
-
问题内容 我在有 tcp 服务器的包中使用 goroutines。大多数时候响应很重,但是当例程结束时,它并没有从内存中清除。 func Handle() { service := ":7777" tcpAddr, err := net.ResolveTCPAddr("491 收藏
-
问题内容 我是新手 我想打印结构变量的地址 这是我的程序 type Rect struct { width int name int } func main() { r := Rect{4,6} p := &r p.width = 15 fmt.Println("-----",&p,r,p,&r) } 这个的输出491 收藏
-
问题内容 我想包装一个 C 函数,它char*指向一个非空字节缓冲区(的第一个元素)。我正在尝试使用 CGo 将其包装在 Go 函数中,以便可以将其传递 a []byte,但我不知道如何进行转换。C 函数491 收藏
-
问题内容 我正在发送一个带有指定 10 秒超时的上下文的请求: ctx, cancel := context.WithTimeout(context.Background(), time.Second * 10) defer cancel() _, err := client.SendRequest(ctx) if err != nil { return 0, err } 现491 收藏