golang:exported function Script should have comment or be unexported

Posted xiximayou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang:exported function Script should have comment or be unexported相关的知识,希望对你有一定的参考价值。

当自己定义的包被外部使用时,如果不遵循一定的规范,那么会出现讨厌的绿色纹条,还会警告:

技术图片

技术图片

虽然不会影响运行,但是也令人讨厌,那么如何解决这个问题呢?

为结构体或者变量或者方法添加注释,并且开头必须是结构体或变量或方法的名字,加上空格,加上描述

技术图片

这样就不会有讨厌的绿色纹条了,同时需要注意声明结构体时需指定名称,即q *Queue,不能用this或者self指代q,否则会有警告:

技术图片

以上是关于golang:exported function Script should have comment or be unexported的主要内容,如果未能解决你的问题,请参考以下文章

使用 Go 开发 Prometheus Exporter

Test Scenarios for Excel Export functionality

容器云平台监控告警体系—— Golang应用接入Prometheus

Node.js module export async function

U-Boot函数篇 | U-Boot中C语言exported functions声明

Golang Functional Options 来了解一下?