首页 > 代码库 > go语言编码规范

go语言编码规范

1.代码规范
">1.代码规范
类型标识例子
inti / IiCount、ICount
boolb / BbShow、BShow
strings / SsName、SName
uintu / UuColor、UColor
floatf / FfPlace、FPlace
pointerp / P*pName、*PName
structstc/StcstcPerson、StcPerson
arrayarr / ArrarrHero、ArrHero
sliceslc / SlcsliHero、SliHero
mapmap / MapmapPerson、MapPerson
const全部大写const PI float32 = 3.14
interfaceIIMyInterface
2.go关键字
">2.go关键字
2.keyword    
breakdefaultfuncinterfaceselect
casedefergomapstruct
chanelsegotopackageswitch
constfallthroughifrangetype
continueforimportreturnvar
%">3.进制->%
">3.进制->%
3.进制 
二进制%b
八进制%o
十六进制%x
十进制%d
浮点数%f
字符串%s

go语言编码规范