码迷,mamicode.com
首页 > 其他好文 > 详细

Go-注释

时间:2020-12-10 10:57:08      阅读:3      评论:0      收藏:0      [点我收藏+]

标签:content   说明   程序   程序员   buffer   builder   包括   注释   app   

注释

  • 写给程序员看的,对代码的说明,包括功能、实现思路、参数说明
  • Go 单行-//
  • Go 跨行-/* */
  • Go 中只要是对包外可导入需要写上注释

Demo

// Write appends the contents of p to b‘s buffer.
// Write always returns len(p), nil.
func (b *Builder) Write(p []byte) (int, error) {
	b.copyCheck()
	b.buf = append(b.buf, p...)
	return len(p), nil
}

Go-注释

标签:content   说明   程序   程序员   buffer   builder   包括   注释   app   

原文地址:https://www.cnblogs.com/2bjiujiu/p/14091764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!