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

A Tour of Go Type conversions

时间:2014-10-26 21:06:03      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   strong   sp   div   on   

The expression T(v) converts the value v to the type T.

Some numeric conversions:

var i int = 42
var f float64 = float64(i)
var u uint = uint(f)

Or, put more simply:

i := 42
f := float64(i)
u := uint(f)

Unlike in C, in Go assignment between items of different type requires an explicit conversion. Try removing the float64 or int conversions in the example and see what happens.

package main 

import (
    "fmt"
    "math"
)

func main() {
    var x, y int = 3, 4
    var f float64 = math.Sqrt(float64(x*x + y*y))
    var z int = int(f)
    fmt.Println(x, y, z)
}

 

A Tour of Go Type conversions

标签:style   blog   color   io   ar   strong   sp   div   on   

原文地址:http://www.cnblogs.com/ghgyj/p/4052692.html

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