在 http://play.golang.org 上使用 Go Playground 时,用户可能会遇到导入某些内容的能力有限的情况。包。本指南旨在阐明 Playground 环境中允许使用哪些包,并提供容纳实验性和补充库的解决方案。
Playground 对可导入包施加了特定限制:
Playground 允许导入选定的非标准包:
要避免 Playground 中出现导入错误:
对于不符合基本包标准或 Playground 中未明确允许的非标准包,替代选项包括:
您可以使用以下代码测试 Playground 导入标准库包的能力:
package main import ( // Imports all standard library packages. _ "archive/tar" _ "archive/zip" _ "bufio" _ "bytes" // ... (Continues through the entire standard library, add as many packages as needed.) ) func main() { println("ok") }
请注意,尽管导入列表很详尽,但由于 Playground 环境的限制,并非所有包都可以有效利用。
以上是Go Playground 可以导入哪些包?的详细内容。更多信息请关注PHP中文网其他相关文章!