F# 模块扩展与类型扩展

发布于 2024-11-08 20:34:31 字数 361 浏览 0 评论 0原文

如果我想为浮点数组定义一个扩展方法,例如标准差,那么使用数组模块上的模块扩展或 float[] 类型上的扩展会更好吗? 就像:

module Array =
   let std (arr: float[]) = ...

或者

type float ``[]`` with 
    member this.std = ...

如果我像后者那样输入扩展,那么 std 是否只计算一次或每次使用时计算?

而且,后者的正确格式是什么,显然 type float ``[]`` with 不兼容...谢谢。

if I want to define a extension method for float array like standard deviation, would it be better to use module extension on Array module or extension on type float[]?
like :

module Array =
   let std (arr: float[]) = ...

or

type float ``[]`` with 
    member this.std = ...

If I do type extension as the latter, would the std be only calculated once or every time it is used?

And, what is the right format for the latter, apprently type float ``[]`` with does not comile... thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雾里花 2024-11-15 20:34:31

在这种情况下,您无法定义类型扩展,因此问题没有实际意义 - 您必须使用 Array 模块的扩展。无法定义类型扩展的原因是,在 F# 中,类型扩展必须完全镜像类型定义,因此您可以在通用 'a list 类型上定义类型扩展,但是不在构造类型字符串列表上。同样,您可以在(模拟的)泛型数组类型上定义扩展方法

'a ``[]``

,但不能在构造的数组类型上

float ``[]``

定义扩展方法。此行为与 C# 不同,在 C# 中可以在构造的泛型类型上编写扩展方法。

In this case, you can't define a type extension so the issue is moot - you must use an extension of the Array module. The reason that you can't define a type extension is that in F#, type extensions must exactly mirror type definitions, so you can define a type extension on the generic 'a list type, for instance, but not on the constructed type string list. Similarly, you could define an extension method on the (simulated) generic array type

'a ``[]``

but not on the constructed array type

float ``[]``

This behavior is different than C#, where it is possible to write extension methods on constructed generic types.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文