f# – 使用’flexible’类型参数对泛型类型进行模式匹配
发布时间:2020-12-15 02:16:04 所属栏目:百科 来源:网络整理
导读:match value with| :? list#SomeType as l - l //Is it possible to match any list of a type derived from SomeType?| _ - failwith "doesn't match" 解决方法 不,遗憾的是不可能做这样的事情 – CLR没有提供任何有效的方式来进行这种类型的测试.有些(相当
match value with | :? list<#SomeType> as l -> l //Is it possible to match any list of a type derived from SomeType? | _ -> failwith "doesn't match" 解决方法
不,遗憾的是不可能做这样的事情 – CLR没有提供任何有效的方式来进行这种类型的测试.有些(相当难看的)解决方案请参见
How to cast an object to a list of generic type in F#和
F# and pattern matching on generics in a non-generic method implementing an interface.
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |