We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当GOMAXPROCS=1时,下列程序,预期输出什么结果?
GOMAXPROCS=1
package main func main() { go println("Hello ZOUYING!") for { } }
测试运行:GOMAXPROCS=1 go run main.go
GOMAXPROCS=1 go run main.go
The text was updated successfully, but these errors were encountered:
测试环境与结果
在若干版本的环境中测试,测试结果如下:
Sorry, something went wrong.
No branches or pull requests
当
GOMAXPROCS=1
时,下列程序,预期输出什么结果?测试运行:
GOMAXPROCS=1 go run main.go
The text was updated successfully, but these errors were encountered: