为了账号安全,请及时绑定邮箱和手机立即绑定

Go中的“ net”包导入错误

Go中的“ net”包导入错误

Go
SMILET 2021-05-06 13:13:33
我正在尝试运行在网上找到的示例Go程序,如下所示:/* IP */package mainimport (    "net"    "os"    "fmt")func main() {    if len(os.Args) != 2 {        fmt.Fprintf(os.Stderr, "Usage: %s ip-addr\n", os.Args[0])        os.Exit(1)    }    name := os.Args[1]    addr := net.ParseIP(name)    if addr == nil {        fmt.Println("Invalid address")    } else {        fmt.Println("The address is ", addr.String())    }    os.Exit(0)}然后,我尝试使用以下命令进行编译:6g ip.go我收到以下错误:ip.go:7: can't find import: net我的Go版本没有网络包装吗?还是我使用了错误的编译器版本?谢谢!
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 318 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信