gpt4 book ai didi

f# - F# 的柯里化(Currying)问题。将函数附加到类型的正确方法是什么?

转载 作者:行者123 更新时间:2023-12-01 04:48:42 25 4
gpt4 key购买 nike

我不明白以下代码有什么问题:

let toClass (problem:Problem<'a>) (classID:int) (items:'a list) =
let newFreqTable = (problem.FreqTables.[classID]).count items
{ problem with FreqTables = newFreqTable :: (problem.FreqTables |> List.filter (fun i -> i.ClassID <> classID)) }
type Problem<'a> when 'a : equality with member this.toClass (classID:int) (items:list<'a>) = toClass this classID items

我有一个 Problem类型,它只是将任意数量的 FreqTables 分组的一种方式- “频率表”的缩写。所以 toClass方法只需要适当的 freqTable(通过 classID 参数)并返回一个新的 - 带有计算的给定项目。
let typeIndependentCall = toClass p 0 ["word"; "word"; "s"] // this works perfectly

let typeDependentCall = typeIndependentCall.toClass 1 ["word"; "s"]
// gives an error: "One or more of the overloads of this method has
// curried arguments. Consider redesigning these members to take
// arguments in tupled form".

我对 F# 和函数式编程很陌生。将行为附加到我的类型的正确方法是什么?

最佳答案

在 F# 中,将参数传递给函数有两种主要方式:curried 和 tupled。柯里化(Currying)形式是您在上面的代码中使用的形式,它有一些关键的好处,首先是部分应用。

例如,而不是考虑

fun add a b = a + b

作为一个接受 2 个参数并返回一个值的函数,我们可以将其视为一个参数的函数,该函数返回一个具有一个参数的函数。这就是为什么我们函数的类型签名是
Int -> Int -> Int

或者,更清楚地说,
Int -> (Int -> Int)

但是,当重载方法时,我们只能使用元组参数形式
(Int, Int) -> Int

这样做的原因是为了优化,正如所讨论的 here

要使您的代码正常工作,请使用
type Problem<'a> when 'a : equality with member this.toClass (classID:int, items:list<'a>) = toClass this classID items

并这样称呼它:
let typeDependentCall = typeIndependentCall.toClass(1, ["word"; "s"]) 

关于f# - F# 的柯里化(Currying)问题。将函数附加到类型的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44023829/

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