doukeng1922 2018-05-31 12:58
浏览 112
已采纳

无法运行多个Go文件

I have two go files in a directory.

  Go  
   ├── mains.go  
   └── vars.go

The code for the mains.go and vars.go are given below:

mains.go
--------
package main

import "fmt"

func main() {
     fmt.Println("This is the mains file")
}


vars.go
--------
package main

import "fmt"

func main() {
     fmt.Println("This is the vars file")
}

While running the file individually using the terminal command

go run mains.go
go run vars.go

I am getting the output. When I am using VScode, I am getting the following error

main redeclared in this block
previous declaration at ./mains.go:5:6

Due to this error, I am not able to run the code. The code runs fine when each file is separated into folders. I tried to remove the main declaration from the file before saving but the autocomplete/autoformat feature fills the package main & import "fmt" commands automatically. My doubts are :

  • Is this the problem with the editor? (As the terminal commands run fine)

  • Any other recommended IDE for go?

My specs

Ubuntu : 16.04
Visual Studio Code : 1.23.1
go version : 1.9.2

  • 写回答

2条回答 默认 最新

  • douchensou6969 2018-06-01 08:48
    关注

    It doesn't make sense to redeclare the main function twice in the same package. You mentioned that the code works fine placing the mains.go and vars.go files in separate folders. That is expected and this is what needs to be done - placing the files in different folders.

    If however, you need to run both functions, change your setup using a simple goroutine as defined below:

    // main.go
    package main
    
    import (
              "fmt"
              "sync"
    )
    
    var wg sync.WaitGroup
    
    func main() {
         fmt.Println("This is the mains file")
    
         wg.Add(1)
         go vars()
    
         // do other stuff...
         wg.Wait()
    }
    
    // vars.go
    package main
    
    import "fmt"
    
    func vars() {
         fmt.Println("This is the vars file")
         // do other stuff...
    
         wg.Done()
    }
    

    This would allow you to run both functions at the same time whilst still in the same package. Since the functions can't have the same function name: main(), you need to change one of them to something else as I've done.

    Note however that you could simply call the vars() function without doing so concurrently.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 三相直流充电模块对数字电源芯片在物理上它必须具备哪些功能和性能?
  • ¥30 数字电源对DSP芯片的具体要求
  • ¥20 antv g6 折线边如何变为钝角
  • ¥30 如何在Matlab或Python中 设置饼图的高度
  • ¥15 nginx中的CORS策略应该如何配置
  • ¥30 信号与系统实验:采样定理分析
  • ¥100 我想找人帮我写Python 的股票分析代码,有意请加mathtao
  • ¥20 Vite 打包的 Vue3 组件库,图标无法显示
  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别