2022-10-16:以下go语言代码输出什么?A:timed out;B:panic;C:没有任何输出。

package main

import (
    "context"
    "fmt"
)

func main() {
    ctx, _ := context.WithTimeout(context.Background(), 0)
    <-ctx.Done()
    fmt.Println("timed out")
}

答案选A。时间到就不会阻塞。 在这里插入图片描述