登录
首页 >  Golang >  Go问答

运行时错误:无效的内存地址或 nil 指针取消引用

来源:Golang技术栈

时间:2023-04-12 11:02:13 327浏览 收藏

亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《运行时错误:无效的内存地址或 nil 指针取消引用》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下golang,希望所有认真读完的童鞋们,都有实质性的提高。

问题内容

我是新手,正在尝试制作一个简单的网络爬虫。我不断收到“恐慌:运行时错误:无效的内存地址或 nil 指针取消引用”,并且不知道如何解决该问题。我有一个“advancedFetcher”函数和一个“basicFetcher”函数,在任何一个下我都会遇到相同的错误。[这个答案](https://stackoverflow.com/questions/21044079/invalid- memory-address-or-nil-pointer-dereference-when-use-http- get/21044970#21044970)建议检查每个错误(我认为),但我仍然收到错误。谢谢!

package main

import (
    "crypto/tls"
    "fmt"
    "io/ioutil"
    "net"
    "net/http"
    "time"
)

var tr = &http.Transport{
    TLSClientConfig:     &tls.Config{InsecureSkipVerify: true},
    MaxIdleConnsPerHost: 25,
    DisableKeepAlives:   true,
    Proxy:               http.ProxyFromEnvironment,
    Dial: (&net.Dialer{
        Timeout:   10 * time.Second,
        KeepAlive: 10 * time.Second,
    }).Dial,
    TLSHandshakeTimeout: 5 * time.Second,
}
var client = &http.Client{Transport: tr}

func makeGetRequest(uri string) *http.Response {
    req, err := http.NewRequest("GET", uri, nil)
    if err != nil {
        fmt.Println(err)
    }
    req.Header.Add("User-Agent", "Hi it's me again")
    resp, err := client.Do(req)
    if err != nil {
        fmt.Println(err)
    }
    return resp
}

func advancedFetcher(uri string, c chan int) {
    fmt.Println("Getting: ", uri)
    resp := makeGetRequest(uri)
    defer resp.Body.Close()
    c 

编辑#1:

Getting:  https://www.google.com
Getting:  http://www.fdicconnect.gov
200
Get http://www.fdicconnect.gov: dial tcp 167.176.6.86:80: i/o timeout
panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xb code=0x1 addr=0x0 pc=0x400ff2]

goroutine 21 [running]:
runtime.panic(0x6594c0, 0x7e9b53)
    /usr/local/go/src/pkg/runtime/panic.c:279 +0xf5
main.advancedFetcher(0x6c3b70, 0x1a, 0xc208004180)
    /home/me/go/src/testfolder/tester/main.go:41 +0x1c2
created by main.main
    /home/me/go/src/testfolder/tester/main.go:61 +0x123

goroutine 16 [chan receive]:
main.main()
    /home/me/go/src/testfolder/tester/main.go:65 +0x198

goroutine 19 [finalizer wait]:
runtime.park(0x413bd0, 0x7ee660, 0x7ec8c9)
    /usr/local/go/src/pkg/runtime/proc.c:1369 +0x89
runtime.parkunlock(0x7ee660, 0x7ec8c9)
    /usr/local/go/src/pkg/runtime/proc.c:1385 +0x3b
runfinq()
    /usr/local/go/src/pkg/runtime/mgc0.c:2644 +0xcf
runtime.goexit()
    /usr/local/go/src/pkg/runtime/proc.c:1445

goroutine 17 [syscall]:
runtime.goexit()
    /usr/local/go/src/pkg/runtime/proc.c:1445

正确答案

您的程序是否在恐慌之前打印错误?如果有记忆,如果http.Get返回错误,则,这将导致您的错误,resp.Body == nil因为您无法调用resp.Body.Close().nil

正如[twotwotwo 建议](https://stackoverflow.com/questions/26726203/runtime-error- invalid-memory-address-or-nil-pointer- dereference/26738639#comment42044181_26726203)的那样,您应该编写函数,使其返回 (result, error) 对,这样您就可以在遇到问题之前优雅地终止它。

今天关于《运行时错误:无效的内存地址或 nil 指针取消引用》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>