从现在开始,努力学习吧!本文《为何在使用 net.Interfaces 时出现错误会导致程序崩溃?》主要讲解了等等相关知识点,我会在编程网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就
从现在开始,努力学习吧!本文《为何在使用 net.Interfaces 时出现错误会导致程序崩溃?》主要讲解了等等相关知识点,我会在编程网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!
问题内容我正在尝试获取我的计算机上的系统接口列表,我正在使用此处定义的 net 包。
我有一小段代码,在尝试打印错误时崩溃了,而且我不明白为什么错误会在我身上发生。它应该返回一个错误,或者nil,对吗?
我使用 sudo、root 并在常规用户帐户下运行了此代码,认为这可能是网络接口的权限问题,但它在所有用户级别中仍然存在。
package main
import (
"net"
"fmt"
)
func main() {
var err error
var interfaces []net.interface
var ifstring []string
interfaces, err = net.interfaces()
fmt.printf("%v",interfaces)
if err != nil {
for _, v := range interfaces {
ifstring = append(ifstring, v.name)
}
} else {
fmt.printf(err.error())
ifstring = append(ifstring, "unable to get system interfaces")
}
}
运行Go build
并执行时,程序输出如下:
[{1 65536 lo up|loopback} {2 1500 eno1 b8:cc:3c:8e:d4:d3 up|broadcast|multicast} {9 1500 tun0 up|pointtopoint|multicast}]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x4a5269]
goroutine 1 [running]:
main.main()
/home/andrew/interface/borked.go:20 +0x269
您收到一个零指针取消引用,因为这正是您正在做的事情。
在代码中给出以下 if 语句:
if err != nil {
for _, v := range interfaces {
ifString = append(ifString, v.Name)
}
} else {
fmt.Printf(err.Error())
...
}
当 err
为零时,达到 else
。然而,您正在尝试访问其中的字段:err.error()
,取消引用 nil 指针。
您需要反转您的 if
语句,这是错误的方式。
到这里,我们也就讲完了《为何在使用 net.Interfaces 时出现错误会导致程序崩溃?》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注编程网公众号,带你了解更多关于的知识点!
--结束END--
本文标题: 为何在使用 net.Interfaces 时出现错误会导致程序崩溃?
本文链接: https://lsjlt.com/news/595916.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0