以下由Golang語言教學專欄給大家分享Go命名規格小記,希望對需要的朋友有幫助!
camelCase
ServeHTTP
i, j, k
cust
而不是 customer
var tt []*Thingfor i, t := range tt { ... }
log.Info() // good log.LogInfo() // bad
或
setters 這樣命名:
custSvc.cust() // good custSvc.getCust() // bad
加入介面
type Stringer interfaces { String() string }更多golang技術文章,請造訪
以上是分享Go命名規範小記的詳細內容。更多資訊請關注PHP中文網其他相關文章!