doumen1883 2014-01-31 13:29
浏览 80
已采纳

在if..else语句中未声明变量

I'm just started learning go lang, and I am confused about declaring variables in go lang

for example I've declare req, er inside if...else statement.

if strings.EqualFold(r.Method, "GET") || strings.EqualFold(r.Method, "") {
    req, er := http.NewRequest(r.Method, r.Uri, b)
} else {
    req, er := http.NewRequest(r.Method, r.Uri, b)
}


if er != nil {
    // we couldn't parse the URL.
    return nil, &Error{Err: er}
}

// add headers to the request
req.Host = r.Host
req.Header.Add("User-Agent", r.UserAgent)
req.Header.Add("Content-Type", r.ContentType)
req.Header.Add("Accept", r.Accept)
if r.headers != nil {
    for _, header := range r.headers {
        req.Header.Add(header.name, header.value)
    }
}

But I've got error from terminal

./goreq.go:127: req declared and not used
./goreq.go:127: er declared and not used
./goreq.go:129: req declared and not used
./goreq.go:129: er declared and not used

seems like anything I declared inside If statement is not working... How can I solved it?

  • 写回答

2条回答 默认 最新

  • dongliyan9190 2014-01-31 13:36
    关注

    Because variables are only defined in the scope in which they are declared:

    package main
    
    import "fmt"
    
    func main() {
        a := 1
        fmt.Println(a)
        {
            a := 2
            fmt.Println(a)
        }
        fmt.Println(a)
    }
    

    go play

    The difference between = and := is that = is just assignment and := is syntax for variable declaration and assigment

    This:

    a := 1
    

    is equivalent to:

    var a int
    a = 1
    

    What you probably want is:

    var req *http.Request
    var er error
    if strings.EqualFold(r.Method, "GET") || strings.EqualFold(r.Method, "") {
        req, er = http.NewRequest(r.Method, r.Uri, b)
    } else {
        req, er = http.NewRequest(r.Method, r.Uri, b)
    }
    
    
    if er != nil {
        // we couldn't parse the URL.
        return nil, &Error{Err: er}
    }
    
    // add headers to the request
    req.Host = r.Host
    req.Header.Add("User-Agent", r.UserAgent)
    req.Header.Add("Content-Type", r.ContentType)
    req.Header.Add("Accept", r.Accept)
    if r.headers != nil {
        for _, header := range r.headers {
            req.Header.Add(header.name, header.value)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog