Go常數範例


Go語言支援字元,字串,布林和數值的常數。

所有的範例程式碼,都放在 F:\worksp\golang 目錄下。安裝Go程式設計環境請參考:/2/23/798.html

const關鍵字用來宣告一個常數值。const語句可以出現在var語句的任何地方。常數表示式以任意精度執行算術運算。數位常數在給定一個數位常數之前不指定型別,例如通過顯式轉換。

可以通過在需要一個數位的上下文中使用它來給予數位一個型別,例如,變數賦值或函式呼叫。 例如,這裡math.Sin期望一個float64型別。

variables.go的完整程式碼如下所示 -

package main

import "fmt"
import "math"

// `const` declares a constant value.
const s string = "constant"

func main() {
    fmt.Println(s)

    // A `const` statement can appear anywhere a `var`
    // statement can.
    const n = 500000000

    // Constant expressions perform arithmetic with
    // arbitrary precision.
    const d = 3e20 / n
    fmt.Println(d)

    // A numeric constant has no type until it's given
    // one, such as by an explicit cast.
    fmt.Println(int64(d))

    // A number can be given a type by using it in a
    // context that requires one, such as a variable
    // assignment or function call. For example, here
    // `math.Sin` expects a `float64`.
    fmt.Println(math.Sin(n))
}

執行上面程式碼,將得到以下輸出結果 -

F:\worksp\golang>go run constants.go
constant
6e+11
600000000000
-0.28470407323754404