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

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

具有多個(gè)結(jié)構(gòu)的通用功能

具有多個(gè)結(jié)構(gòu)的通用功能

Go
暮色呼如 2022-08-01 16:49:47
我有一個(gè)用例來(lái)定義一個(gè)函數(shù)(例如它是“Process”),這對(duì)于兩個(gè)結(jié)構(gòu)(Bellow示例:StudentStats和 EmployeeStats)是常見(jiàn)的,對(duì)于每個(gè)結(jié)構(gòu),它都有自己的“Pending”函數(shù)實(shí)現(xiàn)。當(dāng)我運(yùn)行該示例時(shí),我得到以下錯(cuò)誤:panic: runtime error: invalid memory address or nil pointer dereference[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x4990ba]解決此問(wèn)題的正確方法是什么?package mainimport "fmt"type Stats struct {    Pending func(int, int) int}func (g *Stats) Process() {    fmt.Println("Pending articles: ", g.Pending(1, 2))}// StatsGenerator is an interface for any entity for a casetype StatsGenerator interface {    Process()}// Creating structuretype StudentStats struct {    Stats    name      string    language  string    Tarticles int    Particles int}type EmployeeStats struct {    Stats    name      string    Tarticles int    Particles int}func (a *StudentStats) Pending(x int, y int) int {    // Logic to identify if the accountis in pending state for stucent    return x + y}func (a *EmployeeStats) Pending(x int, y int) int {    // Logic to identify if the accountis in pending state for employe    return x - y}// Main methodfunc main() {    sResult := StudentStats{        name:      "Sonia",        language:  "Java",        Tarticles: 1,        Particles: 1,    }    eResult := EmployeeStats{        name:      "Sonia",        Tarticles: 1,        Particles: 4,    }    var statsGenerator = []StatsGenerator{        &sResult, &eResult,    }    for _, generator := range statsGenerator {        generator.Process()    }}
查看完整描述

2 回答

?
呼啦一陣風(fēng)

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

好吧,這是我會(huì)給出的答案。


我會(huì)創(chuàng)建函數(shù)來(lái)創(chuàng)建新的 StudentStat/EmployeeStat 來(lái)正確設(shè)置函數(shù):Pending


func NewStudentStats(name, language string, tarticles, particles int) *StudentStats {

    stats := &StudentStats{

        name:      name,

        language:  language,

        Tarticles: tarticles,

        Particles: particles,

    }

    // setting the correct Pending function to the Stats struct inside:

    stats.Stats.Pending = stats.Pending

    return stats

}

有關(guān)完整代碼,請(qǐng)參閱工作 Playground 示例。


還要注意我對(duì)Go中面向?qū)ο缶幊痰脑u(píng)論。


查看完整回答
反對(duì) 回復(fù) 2022-08-01
?
慕碼人2483693

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

問(wèn)題在于您的統(tǒng)計(jì)信息類(lèi)型嵌入了結(jié)構(gòu):Stats


type StudentStats struct {

    Stats

    // [..]

}

這一切都很好,但是您的類(lèi)型具有字段,這是您正在調(diào)用的函數(shù):StatsPendingProcess()


type Stats struct {

    Pending func(int, int) int

}


func (g *Stats) Process() {

    fmt.Println("Pending articles: ", g.Pending(1, 2))

}

但是沒(méi)有任何東西會(huì)給 賦予值,所以它是,并且會(huì)恐慌。Pendingnilg.Pending(1, 2)


我不完全確定你的代碼的意圖是什么,但是要么實(shí)現(xiàn)為上的方法,要么在創(chuàng)建結(jié)構(gòu)時(shí)分配一個(gè)值:Pending()Stats


sResult := StudentStats{

    Stats: Stats{

        Pending: func(a, b int) int {

            // Do something.

        }

    },

    // [..]

}


查看完整回答
反對(duì) 回復(fù) 2022-08-01
  • 2 回答
  • 0 關(guān)注
  • 148 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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