我博客之前的Golang高效实践系列博客中已经系统的介绍了Golang的一些高效实践建议,例如:
1.代码格式go fmt工具,开发不用过多关注。
2.支持块注释和行注释,一般包开头用块注释说明,函数用行注释说明,为了提高辨识度,函数注释一般以函数名为开头。例如:
// Compile parses a regular expression and returns, if successful, // a Regexp that can be used to match against text. func Compile(str string) (*Regexp, error) {