第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

context中的值不能在不同的包中傳輸?

context中的值不能在不同的包中傳輸?

Go
牧羊人nacy 2023-04-24 16:22:25
今天我嘗試使用上下文編程,代碼如下:package mainfunc main(){  ctx := context.Background()  ctx = context.WithValue(ctx,"appid","test111")  b.dosomething()}package bfunc dosomething(ctx context.Context){    fmt.Println(ctx.Value("appid").(string))} 然后我的程序崩潰了。我認(rèn)為這是由于這些 ctx 在不同的包中
查看完整描述

1 回答

?
繁花如伊

TA貢獻(xiàn)2012條經(jīng)驗(yàn) 獲得超12個(gè)贊

我建議您僅在單個(gè)任務(wù)的生命周期中使用上下文,并通過函數(shù)傳遞相同的上下文。您還應(yīng)該了解在何處使用上下文以及在何處僅將參數(shù)傳遞給函數(shù)。


另一個(gè)建議是使用自定義類型從上下文中設(shè)置和獲取值。


根據(jù)以上所有內(nèi)容,您的程序應(yīng)如下所示:


package main


import (

    "context"

    "fmt"

)


type KeyMsg string


func main() {

    ctx := context.WithValue(context.Background(), KeyMsg("msg"), "hello")

    DoSomething(ctx)

}


// DoSomething accepts context value, retrieves message by KeyMsg and prints it.

func DoSomething(ctx context.Context) {

    msg, ok := ctx.Value(KeyMsg("msg")).(string)

    if !ok {

        return

    }


    fmt.Println("got msg:", msg)

}

您可以將函數(shù) DoSomething 移動(dòng)到另一個(gè)包中,并將其命名為 packagename.DoSomething 它不會(huì)改變?nèi)魏蝺?nèi)容。


查看完整回答
反對(duì) 回復(fù) 2023-04-24
  • 1 回答
  • 0 關(guān)注
  • 115 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)