首页 > 其他 > 详细

Go-注释

时间:2020-12-06 11:45:26      阅读:31      评论:0      收藏:0      [点我收藏+]

注释

  • 写给程序员看的,对代码的说明,包括功能、实现思路、参数说明
  • 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-注释

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!