Skip to content

Golang 注释与文档

注释

  • 单行注释定义在//之后
  • 多行注释定义在/* */之间
go
// 单行注释
// 单行注释
// 单行注释
go
/*
 * 多行注释
 * 多行注释
 */