Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 JetBrains GoLand IDE 中,当我键入基本的“Hello, World!”时 例如,传递给IDEa:的字符串前面有一个小字符。fmt.Println()它是什么意思,它的目的是什么?
a:
fmt.Println()
我在文档中找不到答案。
这些被称为参数提示,它们在 JetBrains IDE 中很常见。基本上,它是定义中的参数名称fmt.Println。请参阅官方文档,其中第一个参数a在Println.
fmt.Println
a
Println