gpt4 book ai didi

generics - F# generics 泛型构造要求类型 'struct (Guid * int)' 具有公共(public)默认构造函数

转载 作者:行者123 更新时间:2023-12-04 14:22:44 25 4
gpt4 key购买 nike

我在 C# 中有一个带有此返回类型的方法的接口(interface):

Task<(Guid, int)?>

我需要在 F# 中实现这个接口(interface),如果我没记错的话,这在 F# 中应该是等价的:
Task<Nullable<ValueTuple<Guid, int>>>

不幸的是,当我编译时,我收到了这条消息:
generic construct requires that the type 'struct (Guid * int)' have a public default constructor

我发现了一些类似的问题,看起来解决方案是使用 [<CLIMutable>]属性。但这不是我可以用 System.ValueTuple 做的事情。有没有办法在 F# 中使用 Nullable ValueTuple?

最佳答案

我认为这是 F# 中的编译器错误。您可能想在 F# GitHub page 上打开一个问题并报告此行为。我怀疑这是一个编译器错误的原因是我可以通过简单地取消装箱 struct (System.Guid, int) 来使其工作。至ValueTuple<System.Guid, int> , 这应该已经是等效类型了。以下是我在示例中如何使其工作的方法,这也可以作为一种可行的解决方法,直到更熟悉 F# 编译器的人可以让你知道它是否是真正的错误:

open System
open System.Threading.Tasks

type ITest =
abstract member F: unit -> Task<Nullable<ValueTuple<Guid, int>>>

type T () =
interface ITest with
member __.F () =
let id = Guid.NewGuid()
let x = Nullable(struct (id, 0) |> unbox<ValueTuple<Guid, int>>)
Task.Run(fun () -> x)

(T() :> ITest).F().Result

关于generics - F# generics 泛型构造要求类型 'struct (Guid * int)' 具有公共(public)默认构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50934329/

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