golang
文章平均质量分 81
Bagba
Doctor of Philosophy, machine learning on graphs. ~ 与人分享 是 最好的学习方式。
展开
-
Golang接口实现和方法参数 值拷贝
package maintype B struct { bb string}type I interface { tt() pp()}func (a *A) tt() { println(&(a.b))}func (a A) pp() { println(&(a.b))}type A struct { b *B}func test(a ...原创 2019-10-15 10:48:12 · 618 阅读 · 0 评论 -
Golang值传递,到底是用指针还是引用呢
大家先看一段简短代码就很明白了。type Foo struct { Name string}func change(foo Foo) Foo { foo.Name = "changed" return foo}func changePointer(foo *Foo) Foo { foo.Name = "changed" log.Printf("change1 Name: %...原创 2019-08-16 15:51:47 · 2709 阅读 · 0 评论