gpt4 book ai didi

f# - 在 F# 中返回相同类型的修改版本

转载 作者:行者123 更新时间:2023-12-01 06:41:31 25 4
gpt4 key购买 nike

如果我有这样的类层次结构

type Employee(name) =
member val name: string = name

type HourlyEmployee(name, rate) =
inherit Employee(name)
member val rate: int = rate

type SalariedEmployee(name, salary) =
inherit Employee(salary)
member val salary: int = salary

我想要一个以纯粹的方式更新 name 字段的函数,这怎么可能?几个失败的选项:

let changeName(employee: Employee) = 
// no idea what class this was, so this can only return the base class

let changeName<'a when 'a :> Employee>(employee: 'a) =
// 'a has no constructor

我想出的最接近的事情是创建一个虚拟 Employee.changeName 并在每个类上实现它。这看起来像是很多额外的工作加上它很容易出错,因为返回类型是 Employee 并且必须向上转换回原始类。

似乎应该有一种更简单、更安全的方法来完成这样的任务。这是需要类型类的东西吗?

更新

是的,我可以让 name 字段可变,这就是它现在在我的代码中的实现方式,但这是我想要摆脱的。

更新2

我提出的满足类型安全和简洁性要求的解决方案是定义

type Employee<'a> = {name: string; otherStuff: 'a}

然后只需使用 with 语法来更改名称。但是 otherStuff: 'a 显然是丑陋且看起来很怪异的代码,所以我仍然愿意寻求更好的解决方案。

最佳答案

如果您正在寻找既纯粹又惯用的 F# 的东西,那么您一开始就不应该使用继承层次结构。这是一个面向对象的概念。

在 F# 中,您可以像这样使用代数数据类型对 Employee 进行建模:

type HourlyData = { Name : string; Rate : int }
type SalaryData = { Name : string; Salary : int }

type Employee =
| Hourly of HourlyData
| Salaried of SalaryData

这将使您能够像这样创建 Employee 值:

> let he = Hourly { Name = "Bob"; Rate = 100 };;

val he : Employee = Hourly {Name = "Bob";
Rate = 100;}

> let se = Salaried { Name = "Jane"; Salary = 10000 };;

val se : Employee = Salaried {Name = "Jane";
Salary = 10000;}

你也可以定义一个函数来以纯粹的方式更改名称:

let changeName newName = function
| Hourly h -> Hourly { h with Name = newName }
| Salaried s -> Salaried { s with Name = newName }

这使您能够更改现有 Employee 值的名称,如下所示:

> let se' = se |> changeName "Mary";;

val se' : Employee = Salaried {Name = "Mary";
Salary = 10000;}

关于f# - 在 F# 中返回相同类型的修改版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30966026/

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