虽然 Go 可能不提供对泛型编程或函数重载的固有支持,但它在处理可变参数时确实允许一定程度的灵活性函数。
考虑一下常见场景,您有多个函数,如下所示:
<code class="go">func (this Document) GetString(name string, defaults ...string) string { // ... Function implementation } func (this Document) GetInt(name string, defaults ...int) int { // ... Function implementation }</code>
您可能会遇到这些函数之间的代码重复。有没有办法最大限度地减少这种冗余?
是的,虽然 Go 缺乏通用模板,但您可以利用 interface{} 来提供通用解决方案。
<code class="go">func (this Document) Get(name string, defaults ...interface{}) interface{} { // ... Function implementation // This function returns `interface{}` instead of specific types. }</code>
这种方法使您能够进行交互按以下方式使用该函数:
<code class="go">value := document.Get("index", 1).(int) // Type casting is required</code>
如果您喜欢空值,可以使用此方法:
<code class="go">value, ok := document.Get("index", 1).(int) // Returns `ok` to indicate type compatibility</code>
但是,此方法可能会产生运行时开销。建议评估您的代码结构并确定单独的函数或不同的解决方案是否更适合您的特定需求。
以上是Go 的可变参数函数可以变得更通用吗?的详细内容。更多信息请关注PHP中文网其他相关文章!