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

A Tour of Go Basic types

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

标签:style   blog   color   ar   for   sp   div   on   log   

Go‘s basic types are

bool

string

int  int8  int16  int32  int64
uint uint8 uint16 uint32 uint64 uintptr

byte // alias for uint8

rune // alias for int32
     // represents a Unicode code point

float32 float64

complex64 complex128

package main 

import (
    "fmt"
    "math/cmplx"
)

var (
    ToBe bool = false
    MaxInt uint64 = 1<<64 -1
    z complex128 = cmplx.Sqrt(-5 + 12i)
)

func main() {
    const f = "%T(%v)\n"
    fmt.Printf(f, ToBe, ToBe)
    fmt.Printf(f, MaxInt,MaxInt)
    fmt.Printf(f, z, z)
}

 

A Tour of Go Basic types

标签:style   blog   color   ar   for   sp   div   on   log   

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

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