码迷,mamicode.com
首页 > 其他好文 > 详细

Go by Example: Constants

时间:2014-11-19 11:31:47      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:golang   go   go语言   常量   constant   

Go语言支持 字符、字符串、布尔型和数字类型变量的常量。

package main

import "fmt"
import "math"

//使用关键词const声明一个常量
const s string = "constant"

func main() {
    fmt.Println(s)
    
    // 任意一个var声明可以出现地方都可以使用const声明
    const n = 500000000

    //常量表达式可以执行任意精度的计算。
    const d = 3e20 / n
    fmt.Println(d)

    //一个数值常量没有类型,除非语句中给出相应类型,例如使用强制类型转换
    fmt.Println(int64(d))
    
    //根据语句的上下文,一个数值常量会被赋予相应的类型。例如:在变量声明或者函数调用中
    //例如,这里函数math.Sin()需要一个float64的数值,则n会当作float64数值进行操作。
    fmt.Println(math.Sin(n))
}
输出

$ go run constant.go 
constant
6e+11
600000000000
-0.28470407323754404


下一个例子:For。


英文原文


Go by Example: Constants

标签:golang   go   go语言   常量   constant   

原文地址:http://blog.csdn.net/codemanship/article/details/41253597

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!