美文网首页
2-2 内建变量类型

2-2 内建变量类型

作者: python76 | 来源:发表于2019-10-01 19:42 被阅读0次

    bool,string

    int,int8,int16,int32,int64,uintptr

    byte,rune

    float32,float64,complex64,complex128


    复数回顾

    复数复习1



    强制类型转换

     var a, b int = 3, 4

    var c int = math.Sqrt(a*a +  b*b)   ----> X

    var c int = int(math.Sqrt(float64(a*a + b*b)))

    相关文章

      网友评论

          本文标题:2-2 内建变量类型

          本文链接:https://www.haomeiwen.com/subject/vnokpctx.html