更新结构中的map [string] * struct变量

时间:2019-03-25 10:48:15

标签: go

package main

import "fmt"

type State string

const (
    // PASS check passed.
    PASS State = "PASS"
    // FAIL check failed.
    FAIL = "FAIL"
    // WARN could not carry out check.
    WARN = "WARN"
    // INFO informational message
    INFO = "INFO"
    // SKIP for tests skipped
    SKIP = "SKIP"
)

// SummaryLevelWise is a summary of results of control checks run CIS Levelwise
type Something struct{
    SummaryLevelWise map[string]*Summary
}

// Summary is a summary of the results of control checks run.
type Summary struct {
    Pass int `json:"total_pass"`
    Fail int `json:"total_fail"`
    Warn int `json:"total_warn"`
    Info int `json:"total_info"`
    Skip int `json:"total_skip"`
}


func main() {

    s := &Something{}
    s.doingSomething()
    // This is one way I tried to update the map[string]*struct variable
    s.SummaryLevelWise["1"].Pass, s.SummaryLevelWise["1"].Fail, s.SummaryLevelWise["1"].Warn, s.SummaryLevelWise["1"].Info, s.SummaryLevelWise["1"].Skip = 0,0,0,0,0

   // Another way that didn't work
   // s.SummaryLevelWise["1"] = &Summary{0,0,0,0,0}

}


func summarizeLevel(summary *Summary) {
    switch PASS{
    case PASS:
        summary.Pass++
    case FAIL:
        summary.Fail++
    case WARN:
        summary.Warn++
    case INFO:
        summary.Info++
    case SKIP:
        summary.Skip++
    }
}


func(something *Something ) doingSomething(){

    level1 := "1"

    for i:=0; i<10; i++ {
        summarizeLevel(something.SummaryLevelWise[level1])
    }
    fmt.Println(something)
}

我得到的错误是

  

紧急:运行时错误:无效的内存地址或nil指针   解引用[signal SIGSEGV:细分违规代码= 0x1 addr = 0x0   pc = 0x1091ac4]

     

goroutine 1 [正在运行]:main.summarizeLevel(...)           /Users/i345678/go/src/github.concur.com/test/test/main.go:68 main。(* Something).doingSomething(0xc00000c028)           /Users/i345678/go/src/github.concur.com/test/test/main.go:89 + 0x64 main.main()           /Users/i345678/go/src/github.concur.com/test/test/main.go:58 + 0x44退出状态2

级别字符串的值为“ 1”和“ 2”。

1 个答案:

答案 0 :(得分:0)

func main() {




    s := &Something{}
    // Intialize map.
    s.SummaryLevelWise = map[string]*Summary{}
    //s.SummaryLevelWise["1"].Pass, s.SummaryLevelWise["1"].Fail, s.SummaryLevelWise["1"].Warn, s.SummaryLevelWise["1"].Info, s.SummaryLevelWise["1"].Skip = 0,0,0,0,0
    s.SummaryLevelWise["1"] = &Summary{0,0,0,0,0}
    s.doingSomething()


}

地图无效。因此需要初始化它们。