我有一个当前没有收到bool参数的函数,但是后来用硬编码的bool调用另一个函数。我们需要删除硬编码调用并允许bool传递。
我首先想到我可以尝试一些默认参数 - 我的谷歌搜索导致Go
显然不支持可选(resp.default)参数。
所以我想我会尝试函数重载。
我在reddit上发现了这个帖子,它说它可以使用自版本1.7.3
以来的特殊指令:
https://www.reddit.com/r/golang/comments/5c57kg/when_did_function_overloading_get_slipped_in/
我正在使用1.8
,但仍然无法让它发挥作用。
我甚至不确定是否可以允许我使用该指令,但我猜测立即更改功能签名可能很危险,因为我不知道谁使用该功能......
无论如何 - 即使// +重载它也无法正常工作
在Go中是否有任何“特殊”方式或模式来解决这个问题?
//some comment
//+overloaded
func (self *RemoteSystem) Apply(rpath, lpath string, dynamic bool) error {
result, err := anotherFunc(rpath, dynamic)
}
//some comment
//+overloaded
func (self *RemoteSystem) Apply(rpath, lpath string ) error {
//in this function anotherFunc was being called, and dynamic is hardcoded to true
//result, err := anotherFunc(rpath, true)
return self.Apply(rpath, lpath, true)
}
当我运行我的测试时,我得到(原谅我省略了部分真正的文件路径):
too many arguments in call to self.Apply
have (string, string, bool)
want (string, string)
../remotesystem.go:178: (*RemoteSystem).Apply redeclared in this block
previous declaration at ../remotesystem.go:185
答案 0 :(得分:6)
Go中没有重载。不是编写具有不同功能的相同名称的函数,而是更好地表达函数在函数名称中的作用。在这种情况下,通常会做的是这样的事情:
func (self *RemoteSystem) Apply(rpath, lpath string, dynamic bool) error {
result, err := anotherFunc(rpath, dynamic)
}
func (self *RemoteSystem) ApplyDynamic(rpath, lpath string ) error {
//in this function anotherFunc was being called, and dynamic is hardcoded to true
return self.Apply(rpath, lpath, true)
}
只需通过功能名称,您就可以轻松分辨出不同之处和原因。
提供一些上下文(双关语)的另一个例子。
我使用go-endpoints在Go中编写了很多Google App Engine代码。记录事物的方式因您是否有context
而有所不同。我的记录功能就像这样结束了。
func LogViaContext(c context.Context, m string, v ...interface{}) {
if c != nil {
appenginelog.Debugf(c, m, v...)
}
}
func LogViaRequest(r *http.Request, m string, v ...interface{}) {
if r != nil {
c := appengine.NewContext(r)
LogViaContext(c, m, v...)
}
}
答案 1 :(得分:3)
来自Reddit post:
的Unicode。我可以用像素来判断。
Go不支持函数重载。但它确实支持在函数名中使用Unicode字符,这允许您编写看起来像其他函数名的函数名。
第一个是
setValue
,第二个是setV\u0430lue
又名setV\xd0\xb0lue
(CYRILLIC SMALL LETTER A
),第三个是setVal\U0001d69ee
又名{{1} }(使用setVal\xf0\x9d\x9a\x9ee
)。
另见: