约定:程序中使用的包名,与包导入路径的最后一个元素一致
package main
import (
"fmt" // 此文件中使用 fmt 包时,使用 fmt
"math/rand" // 此文件中使用 math/rand 包时,使用 rand
)
”分组“形式,使用圆括号
import (
"fmt" // 此文件中使用 fmt 包时,使用 fmt
"math/rand" // 此文件中使用 math/rand 包时,使用 rand
)
多个导入语句
import "fmt"
import "math"
Math.Pi