通过值传递“this”会降低 Go 方法的性能吗?
与 C 不同,在 C 中,值传递函数参数会导致显着的性能由于变量复制带来的惩罚,Go 的方法接收器遵循不同的范例。
在 Go 中,方法接收器是仅仅是语法上的便利。如下所示:
type Something struct { Value int } func (s *Something) ChangeValue(n int) { s.Value = n } func main() { o := new(Something) fmt.Println(o.Value) // Prints 0 o.ChangeValue(8) // Changes o's value to 8 fmt.Println(o.Value) // Prints 8 (*Something).ChangeValue(o, 16) // Same as calling o.ChangeValue(16) fmt.Println(o.Value) // Prints 16 }
请注意,ChangeValue 中的接收者 s 是一个指针,使其类似于 C 中的引用。如果接收者是值类型,则不允许值突变。
因此,Go 的指针接收器方法确保封装并防止复制整个“this”实例,这与 C/C 中观察到的性能损失不同用于按值传递参数。
以上是通过值传递'this”会影响 Go 方法的性能吗?的详细内容。更多信息请关注PHP中文网其他相关文章!