Golang 解决"no buildable Go source file in"问题

前端之家收集整理的这篇文章主要介绍了Golang 解决"no buildable Go source file in"问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
问题】

我有一个文件夹,文件夹名字叫 12 ,并且我创建了一个Go源文件12_test.go代码如下:

package main

import "fmt"

func main() {
    fmt.Println("Hello world")
}

运行下面命令时出了错:

go build 12_test.go
"go build command-line-arguments: no buildable Go source files in D:\12"

解决

_test后缀在Go语言中有着特殊含义,是用来给Go程序做测试的,build工具会忽略它们。从文件名中删除_test,或者重命名就可以解决这个问题。

原文链接:https://www.f2er.com/go/188200.html

猜你在找的Go相关文章