gpt4 book ai didi

f# - 是否可以在 F# 中为递归类定义不同的属性

转载 作者:行者123 更新时间:2023-12-04 17:28:43 27 4
gpt4 key购买 nike

我想声明两个关联的类,因此我将它们声明为通过“和”链接在一起。每个都有不同的属性,但此代码不起作用(关键字“and”处出现“Unexpected keyword 'and' in definition”错误。我应该如何声明第二个类的属性?

[<AbstractClass>]
type foo() =
abstract member fun1 : foo -> foo2
[<Serializable>]
and foo2() = class
member x.bar y = y
end

最佳答案

这个对我有用。你做了吗open System ?

open System

[<AbstractClass>]
type foo() =
abstract member fun1 : foo -> foo2
and [<Serializable>] foo2() = class
member x.bar y = y
end

编辑:
啊,好像第二个属性应该在 and之后.

关于f# - 是否可以在 F# 中为递归类定义不同的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1921387/

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