gpt4 book ai didi

go - 函数/结构/接口(interface)名称中允许使用哪些字符?

转载 作者:IT王子 更新时间:2023-10-29 01:16:21 27 4
gpt4 key购买 nike

我是新手,已经开始玩弄 A Tour of Go .我注意到一个特点,即允许我命名一个函数 _ 但不能调用该函数:

import "fmt"

type sel struct {
s string
}

func _(s string) sel {
return sel{s}
}

func main() {
fmt.Println("Hello")
_("foo") // <-- does not compile
}

如果我注释整个 _("foo") 行,程序就会编译。

我的问题是函数名称中允许使用哪些字符?它只能是字母数字字符还是我可以使用 $ 等?

是否有命名其他事物的规则,例如结构、接口(interface)等是否与函数相同?

最佳答案

来自spec

The blank identifier, represented by the underscore character _, may be used in a declaration like any other identifier but the declaration does not introduce a new binding.

这解释了为什么代码有效但您无法调用名为 _ 的函数

_ 当你想分配一个变量但忽略它时在 Go 中使用。调用函数 _ 的作用是一样的 - 您定义了它,但编译器会忽略它。

关于go - 函数/结构/接口(interface)名称中允许使用哪些字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11689485/

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