2019.01.27

栏目: Go · 发布时间: 5年前

内容简介:bool,    string(u)int,    (u)int8,    (u)int16,    (u)int32,    (u)int64,    uintptr

内建变量类型

内置变量类型

bool,    string

(u)int,    (u)int8,    (u)int16,    (u)int32,    (u)int64,    uintptr

byte,    rune

float32,    float64,    complex64,    complex128

(u)是unsigned代编有符号或无符号

go与其他不同的类型

1、uintptr  go语言的指针类型

2、rune 其实rune是char类型,而且是char32位

3、complex 复数类型。

Go语言类型转化

func triangle() {

var a ,b int = 3,4

var c int

//go语言没有隐式强制类型转换,必须显示强制类型转换

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

fmt.Println(c)

}

Go语言常量与枚举类型

func consts(){

//go语言常量定义

const fileName="abc"

const a,b=3,4

fmt.Println(fileName,a,b)

}

func enums(){

const(

C#=iota

java

golang

)

}


以上所述就是小编给大家介绍的《2019.01.27》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Getting Started with C++ Audio Programming for Game Development

Getting Started with C++ Audio Programming for Game Development

David Gouveia

Written specifically to help C++ developers add audio to their games from scratch, this book gives a clear introduction to the concepts and practical application of audio programming using the FMOD li......一起来看看 《Getting Started with C++ Audio Programming for Game Development》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具