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

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。时间到就不会阻塞。
在这里插入图片描述

posted @ 2022-10-16 21:54  福大大架构师每日一题  阅读(8)  评论(0编辑  收藏  举报  来源