|
|
@ -42,6 +42,33 @@ GOSSAFUNC // 生成SSA.html文件,
|
|
|
|
go mod init // 初始化当前文件夹,创建go.mod文件
|
|
|
|
go mod init // 初始化当前文件夹,创建go.mod文件
|
|
|
|
go mod download // 下载依赖的module到本地
|
|
|
|
go mod download // 下载依赖的module到本地
|
|
|
|
go mod tidy // 增加缺少的module,删除无用的module
|
|
|
|
go mod tidy // 增加缺少的module,删除无用的module
|
|
|
|
|
|
|
|
go mod vendor // 将依赖复制到vendor下
|
|
|
|
|
|
|
|
文件go.mod // 依赖列表和版本约束
|
|
|
|
|
|
|
|
文件go.sum // 记录module文件hash值,用于安全校验
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
* 基本数据类型
|
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
bool // 布尔
|
|
|
|
|
|
|
|
string // 字符串
|
|
|
|
|
|
|
|
int // 无符号整型(32位操作系统上为int32,64位操作系统上为int64)
|
|
|
|
|
|
|
|
int8 // 8位无符号整型
|
|
|
|
|
|
|
|
int16 // 16位无符号整型
|
|
|
|
|
|
|
|
int32 // 32位无符号整型
|
|
|
|
|
|
|
|
int64 // 64位无符号整型
|
|
|
|
|
|
|
|
uint // 有符号整型(32位操作系统上为uint32,64位操作系统上为uint64)
|
|
|
|
|
|
|
|
uint8 // 8位有符号整型
|
|
|
|
|
|
|
|
uint16 // 16位有符号整型
|
|
|
|
|
|
|
|
uint32 // 32位有符号整型
|
|
|
|
|
|
|
|
uint64 // 64位有符号整型
|
|
|
|
|
|
|
|
float32 // 32位浮点数,精确到小数点后7位
|
|
|
|
|
|
|
|
float64 // 64位浮点数,精确到小数点后15位
|
|
|
|
|
|
|
|
complex64 // 32位实数和虚数
|
|
|
|
|
|
|
|
complex128 // 64位实数和虚数
|
|
|
|
|
|
|
|
byte // 类型实际是一个uint8,代表了ASCII码的一个字符
|
|
|
|
|
|
|
|
rune // 类型实际是一个int32,代表一个UTF-8字符
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
/*******************************************************************************
|
|
|
|
* Hello World
|
|
|
|
* Hello World
|
|
|
@ -129,6 +156,8 @@ case 10:
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
println("i != 10")
|
|
|
|
println("i != 10")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 三目表达式
|
|
|
|
|
|
|
|
注意:Golang没有三目表达式
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
/*******************************************************************************
|
|
|
|