AdSense

網頁

2021/7/13

Golang 常數命名慣例 const naming convention

Go語言使用const關鍵字定義的常數命名慣例如下。


const常數外部可存取的使用大駝峰命名(UpperCamelCase);
僅限於本地存取的使用小駝峰命名(lowerCamelCase)。

// exported constants
const RetiredAge = 65
const OneMillion = 1000000
const RemoteIp = "10.0.1.61"

// local constants
const ageOfMajority = 18
const taiwanCapital = "Taipei"
const stopTimeMs = 1000


沒有留言:

AdSense