gpt4 book ai didi

go - Gogland ide中引入局部变量

转载 作者:数据小太阳 更新时间:2023-10-29 03:13:25 27 4
gpt4 key购买 nike

如何在MacOS的Gogland IDE中引入局部变量??

我有下面的代码,想为通过 ParseKnowHosts 函数返回的所有返回值引入局部变量。

authorizedKeyBytes, error := ioutil.ReadFile("authorized_keys")
if error != nil {
log.Fatal(error)
}
ssh.ParseKnownHosts(authorizedKeyBytes) // returns <marker, hosts, key, pubKey, comment, rest>

应该使用什么键自动将局部变量分配给所有返回值,如下所示,而不是手动输入? (我试过 ALT + Enter 没有用,这是我用于 IntelliJ 的)

marker, hosts, key, pubKey, comment, rest := ssh.ParseKnownHosts(authorizedKeyBytes)

最佳答案

您需要在 Windows/Linux 上使用 CTRL+ALT+V(或在 OS X 上使用 CMD+ALT+V)或调用 Refactor |摘录 |变量,然后从列表中选择函数调用,将为您插入变量。

关于go - Gogland ide中引入局部变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44657806/

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