gpt4 book ai didi

generics - Go(语言)通用数字类型/接口(interface)

转载 作者:IT王子 更新时间:2023-10-29 01:27:56 27 4
gpt4 key购买 nike

<分区>

我正在尝试用 Go 编写一个包,使用“通用”类型计算方程。具体来说,我想实现 runge kutta 5 近似。

此近似计算(未知)函数 y 在点 t0 + h 的值,仅使用 yt0、开始时间t0、步长hdgl 形式的微分方程 >dy/dt = g(t,y) 其中 g 是某个函数。

此近似值在处理标量类型时与处理向量(甚至矩阵)时的行为完全相同。更一般地说:它适用于可以添加/减去相同类型的值并且可以通过标量缩放的所有内容(为此我使用 float64)

所以我试图将其表达为 Go 接口(interface):

type Numeric interface {
Add(rhs Numeric) Numeric
Sub(rhs Numeric) Numeric
Mul(rhs float64) Numeric
}

但是当我尝试“实现”这个接口(interface)时,由于参数类型的原因我遇到了麻烦:

type Vec6F struct {
x, y, z float64
vx, vy, vz float64
}

func (lhs *Vec6F) Add(rhs *Vec6F) rk5.Numeric {
result := new(Vec6F)
result.x = lhs.x + rhs.x
result.y = lhs.y + rhs.y
result.z = lhs.z + rhs.z
result.vx = lhs.vx + rhs.vx
result.vy = lhs.vy + rhs.vy
result.vz = lhs.vz + rhs.vz
return result
}

这给了我错误

cannot use result (type *Vec6F) as type rk5.Numeric in return argument:
*Vec6F does not implement rk5.Numeric (wrong type for Add method
have Add(*Vec6F) rk5.Numeric
want Add(rk5.Numeric) rk5.Numeric

一方面,这对我来说绝对合乎逻辑(因为 rhs 可能是另一个实现 Numeric 的对象)

但另一方面:我如何在 Go 中表达类似的东西?在 C++ 中,我可以改用运算符重载,但在 go 中那是不可能的。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com