微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

golang 调用库函数错误 cannot refer to unexported name

原因总结:导出的函数 首字母必须大写

错误如下:

E:\Dev_Root\go\src\EmulateLoginBaidu>go run EmulateLoginBaidu.go

# command-line-arguments

.\EmulateLoginBaidu.go:52: cannot refer to unexported name crifanLib.getCurLogger

.\EmulateLoginBaidu.go:80: cannot refer to unexported name crifanLib.getUrlRespHtml

.\EmulateLoginBaidu.go:82: cannot refer to unexported name crifanLib.dbgPrintCookies

.\EmulateLoginBaidu.go:82: cannot refer to unexported name crifanLib.getCurCookies

.\EmulateLoginBaidu.go:119: cannot refer to unexported name crifanLib.getUrlRespHtml

.\EmulateLoginBaidu.go:121: cannot refer to unexported name crifanLib.dbgPrintCookies

.\EmulateLoginBaidu.go:121: cannot refer to unexported name crifanLib.getCurCookies

.\EmulateLoginBaidu.go:185: cannot refer to unexported name crifanLib.getUrlRespHtml

.\EmulateLoginBaidu.go:187: cannot refer to unexported name crifanLib.dbgPrintCookies

.\EmulateLoginBaidu.go:187: cannot refer to unexported name crifanLib.getCurCookies

.\EmulateLoginBaidu.go:187: too many errors

解决方法

go,模块中要导出的函数,必须首字母大写

修改crifanLib.go中的getCurLogger为GetCurLogger

以及其他那些函数,都改为大写开头。

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐