dongyao5843 2018-09-17 08:09
浏览 208
已采纳

switch语句中的变量范围问题

I have a program that parses a log file and returns a slice of structs with populated data from the file.

Also I have written a function to add a struct item to the aforemetioned list.

But there is an error that says "Cannot use 'sf' (type *SegmentationFault) as type SegmentationFault" which stems from this function. How am I to solve this problem?

func (sfList *SegmentationFaultList) AddItem(item SegmentationFault) []SegmentationFault {
    sfList.Items = append(sfList.Items, item)
    return sfList.Items
}

func parseLogFile(logPath string) (s *SegmentationFaultList){
    logFile, err := os.Open(logPath)
    checkError(err, "Could not open your log file")
    defer logFile.Close()

    scanner := bufio.NewScanner(logFile)
    parsing := false
    sf := new(SegmentationFault)
    sfs := []SegmentationFault{}
    sfList := SegmentationFaultList{sfs}
    var beginRegexp = regexp.MustCompile(`(?i).+\[err\]:F-(\d+): Dump: Segmentation fault at ([\da-z]+)$`)
    var endRegexp = regexp.MustCompile(`(?i).+\[info\]:Engine child with pid \d+ terminated`)
    var sfTextRegexp = regexp.MustCompile(`(?i).+\[err\]:F-\d+: Dump:(.+)`)

    for scanner.Scan() {
        beginMatch := beginRegexp.FindStringSubmatch(scanner.Text())
        switch {
        case beginMatch != nil:
            sf.pid = beginMatch[1]
            sf.sfAt = beginMatch[2]
            parsing = true
        case endRegexp.FindStringSubmatch(scanner.Text()) != nil:
            parsing = false
            sfList.AddItem(sf)
        case parsing:
            sf.sfText = append(sf.sfText, strings.TrimSpace(sfTextRegexp.FindStringSubmatch(scanner.Text())[1]))
        }
    }
    if err := scanner.Err(); err != nil {
        log.Fatal(err)
    }
    return sfList
}
  • 写回答

1条回答 默认 最新

  • dst67283 2018-09-17 09:59
    关注

    Your problem is that you are passing a pointer value (*SegmentationFault) where you just want a value SegmentationFault.

    Instead of

    sf := new(SegmentationFault)
    

    You should do:

    sf := SegmentationFault{}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100