gpt4 book ai didi

go - 为什么从代码中调用 Setenv 不起作用?

转载 作者:IT王子 更新时间:2023-10-29 02:34:59 28 4
gpt4 key购买 nike

我有一个简单的测试项目,期望在运行时打印 goroutine 调度消息。

从 Goland 配置设置 env 它可以工作。但它不是来自下面的代码,该应用程序不会打印调度信息。有没有人解释一下这里发生了什么?

func TestScheduler1() {

var wg sync.WaitGroup
wg.Add(10)

for i := 0; i < 10; i++ {
go work(&wg)
}

wg.Wait()
// Wait to see the global run queue deplete.
time.Sleep(3 * time.Second)
}

func work(wg *sync.WaitGroup) {
time.Sleep(time.Second)

var counter int
for i := 0; i < 1e10; i++ {
counter++
}

wg.Done()
}

初始化函数如下:

 func init()  {
os.Setenv("GOMAXPROCS", "1")
os.Setenv("GODEBUG", os.Getenv("GODEBUG") + "schedtrace=1000,scheddetail=1")
}

最佳答案

go command documentation提到 go 检查一些环境变量:

The go command, and the tools it invokes, examine a few different environment variables.

因此,环境变量在程序启动前检查,即在构建时检查。当您从代码中设置这些变量时,程序已经运行。

它在 IDE 中运行,因为变量是在编译之前应用的,因此代码会根据您需要的所有更改运行。

关于go - 为什么从代码中调用 Setenv 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57176229/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com