0
如何將全局變量移動到golang中的其他軟件包?其他軟件包中的全局變量golang
像
package main
import "myapp/controllers"
var something string
func main(){
something = "some text"
}
如何將全局變量移動到golang中的其他軟件包?其他軟件包中的全局變量golang
像
package main
import "myapp/controllers"
var something string
func main(){
something = "some text"
}
就像你想在你的包controllers
全球可訪問的變量:?
package controllers
var Something string
func init(){
Something = "some text"
}
然後你就可以做
package main
import (
"myapp/controllers"
"fmt"
)
func main(){
fmt.Println(controllers.Something) //some text
}
我寫了想要一個控制器中的全局變量? 我需要主包裝。 –