dongmozhui3805 2016-01-06 12:47
浏览 61
已采纳

带条件语句(if)问题的范围

I'm new to Go and I'm struggling with scope (as others).

The code below generates:

./excel.go:24: err declared and not used
./excel.go:25: sheet declared and not used

Why does this happen? I have declared both err and sheet in the parent scope, haven't I?

Excel.go:

package main

import (
    "os"
    "fmt"
    "github.com/tealeg/xlsx"
)

func main() {
    var file *xlsx.File
    var sheet *xlsx.Sheet
    var row *xlsx.Row
    var cell *xlsx.Cell
    var err error

    fileName := "MyXLSXFile.xlsx"

    if _, err := os.Stat(fileName); os.IsNotExist(err) {
        fmt.Printf("File does not exist so create one");
        file = xlsx.NewFile()
        sheet, err = file.AddSheet("Sheet1")
    } else {
        fmt.Printf("File exists so open");
        file, err := xlsx.OpenFile(fileName) // <-- line 24
        sheet := file.Sheets[0] // <-- line 25
    }

    row = sheet.AddRow()

    cell = row.AddCell()
    cell.Value = "I am a cell!"
    cell = row.AddCell()
    cell.Value = "I am another cell!"

    err = file.Save(fileName)

    if err != nil {
        fmt.Printf("help")
    }
}
  • 写回答

2条回答 默认 最新

  • dongxingqiu7943 2016-01-06 12:50
    关注

    Use = instead of :=:

        file, err = xlsx.OpenFile(fileName) // <-- line 24
        sheet = file.Sheets[0] // <-- line 25
    

    Go allows re-declaring variables with the same name in nested blocks. := declares a new variable. In your case both err and sheet are declared inside else block but are not used there.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化