开发者学堂课程【Go语言核心编程 - 基础语法、数组、切片、Map:保留关键字和预定义标识符】与课程紧密联系,让用户快速学习知识
课程地址:https://developer.aliyun.com/learning/course/625/detail/9538
保留关键字和预定义标识符
内容介绍:
一、保留关键字介绍
二、预定义标识符介绍
一、保留关键字介绍
在 Go 中,为了简化代码编译过程中对代码的解析,其定义的保留关键字有25个(了解即可),
详细如下:
break |
default |
func |
interface |
select |
case |
defer |
go |
map |
struct |
chan |
else |
goto |
package |
switch |
const |
fallthrough |
if |
range |
type |
continue |
for |
import |
return |
vat |
以上保留关键字已被使用,不可再被使用。
二、预定义标识符介绍
除了保留关键字外,Go还提供了36个预定的标识符,其包括基础数据类型和系统内嵌函数(系统内置函数)。36个预定义标识符仅作了解即可。
append |
bool |
byte |
cap |
close |
complex |
complex64 |
complex128 |
uint16 |
copy |
false |
float32 |
float64 |
imag |
int |
int8 |
int16 |
uint32 |
int32 |
int64 |
iota |
len |
make |
new |
nic |
panic |
uint64 |
println |
real |
|
recover |
string |
true |
uint |
uint8 |
uintprt |
像表中蓝色字体的表示基本数据类型,红色字体表示系统内嵌函数。