在函数实现中遇到了以下差异。示例1返回指针和示例2返回实际对象背后的原因是什么?typeMyInterfaceinterface{Func(paramint)float64//justrandomsignature}//MyInterfaceImplimplementsMyInterfacetypeMyInterfaceImplstruct{}//actualimplementationfunc(myObj*MyInterfaceImpl)Func(paramint)float64{returnfloat64(param)}例1:函数返回接口(interface)时返回指向MyInte