基础语法
- go语句的构成
- 标识符
- 字符串拼接
- 关键字
- 空格
go语句的构成
Go 程序可以由多个标记组成,可以是关键字,标识符,常量,字符串,符号。
fmt.Println(“Hello, World!”)
每行一个标记,标记拆分如下:
- fmt
- .
- Println
- (
- “Hello,World!”
- }
标识符
标识符用来命名变量、类型等程序实体。一个标识符实际上就是一个或是多个字母(AZ和az)数字(0~9)、下划线_组成的序列,但是第一个字符必须是字母或下划线而不能是数字。
以下是有效的标识符:
1 2 | mahesh kumar abc move_name a_123 myname50 _temp j a23b9 retVal |
以下是无效的标识符:
1 2 3 | 1ab(以数字开头) case(Go 语言的关键字) a+b(运算符是不允许的 |
字符串拼接
Go 语言的字符串可以通过 + 实现:
1 | fmt.Println("Hello" + "World") |
关键字
1 2 3 4 5 6 7 8 9 10 11 | 下面列举了 Go 代码中会使用到的 25 个关键字或保留字: break default func interface select case defer go map struct chan else goto package switch const var fallthrough if range type continue for import return 除了以上介绍的这些关键字,Go 语言还有 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 nil panic uint64 print println real recover string true uint uint8 uintptr 程序一般由关键字、常量、变量、运算符、类型和函数组成。 程序中可能会使用到这些分隔符:括号 (),中括号 [] 和大括号 {}。 程序中可能会使用到这些标点符号:.、,、;、: 和 …。 |
空格
Go 语言中变量的声明必须使用空格隔开
1 | var name int; |
建议,变量与运算符间加入空格,程序看起来更加美观。
1 | sum= c1 + c2; |
大功告成,祝君好运