Import

导入包 #

关键字 import

语法规则 #

  • 单个导入
import "包名"
  • 多个导入
import (
    "包名1"
    "包名2"
    "包名3"
    ...
)
  • 导入包使用别名
import 别名 "包名"

例子 #

  • 导入 打印包
package main

import "fmt"

func main() {
	fmt.Println("hello world")
}
  • 导入 打印包字符串包
package main

import (
	"fmt"
	"strings"
)

func main() {
	fmt.Println("hello world")
	fmt.Println(strings.Repeat("hello ", 3)) // 字符串重复
}

// $ go run main.go
// 输出如下
/**
    hello world
    hello hello hello
*/
  • 导入包使用别名
package main

import (
	"fmt"
	myStr "strings"
)

func main() {
	fmt.Println(myStr.Repeat("hello ", 3))
}

// $ go run main.go
// 输出如下
/**
    hello hello hello
*/

转载申请

本作品采用 知识共享署名 4.0 国际许可协议 进行许可,转载时请注明原文链接,图片在使用时请保留全部内容,商业转载请联系作者获得授权。

© 蛮荆 | 陕公网安备 61011302001681 号 | 陕ICP备2023004378号-1 | Rendered by Hugo