作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的代码片段中,我的目的是将 System.Object(可能是 FSharpList)转换为它所持有的任何泛型类型的列表。
match o with
| :? list<_> -> addChildList(o :?> list<_>)
| _ -> addChild(o)
list<obj>
永远匹配为列表。我要
list<Foo>
也可以作为列表匹配。
type Entity = {
Transform : Matrix
Components : obj list
Children : Entity list
}
let o = propertyInfo.GetValue(obj, null)
match o with
| :? list<obj> -> addChildList(o :?> list<obj>)
| :? list<Entity> -> addChildList(o :?> list<Entity>)
| _ -> addChild(o)
match o with
| :? list<_> -> addChildList(o :?> list<_>)
| _ -> addChild(o)
list< obj >
最佳答案
不幸的是,没有简单的方法可以做你想做的事。类型测试只能用于特定类型,即使类型测试通过,转换操作符:?>
也只能将表达式转换为特定类型,因此匹配的右侧无论如何都不会执行您想要的操作。您可以使用事件模式部分解决此问题:
open Microsoft.FSharp.Quotations
open Microsoft.FSharp.Quotations.Patterns
let ( |GenericType|_| ) =
(* methodinfo for typedefof<_> *)
let tdo =
let (Call(None,t,[])) = <@ typedefof<_> @>
t.GetGenericMethodDefinition()
(* match type t against generic def g *)
let rec tymatch t (g:Type) =
if t = typeof<obj> then None
elif g.IsInterface then
let ints = if t.IsInterface then [|t|] else t.GetInterfaces()
ints |> Seq.tryPick (fun t -> if (t.GetGenericTypeDefinition() = g) then Some(t.GetGenericArguments()) else None)
elif t.IsGenericType && t.GetGenericTypeDefinition() = g then
Some(t.GetGenericArguments())
else
tymatch (t.BaseType) g
fun (e:Expr<Type>) (t:Type) ->
match e with
| Call(None,mi,[]) ->
if (mi.GetGenericMethodDefinition() = tdo) then
let [|ty|] = mi.GetGenericArguments()
if ty.IsGenericType then
let tydef = ty.GetGenericTypeDefinition()
tymatch t tydef
else None
else
None
| _ -> None
match o.GetType() with
| GenericType <@ typedefof<list<_>> @> [|t|] -> addChildListUntyped(t,o)
| _ -> addChild(o)
addChildList
的变体类型为
t
和一个对象
o
(运行时类型
list<t>
)而不是采用通用列表。
关于list - 如何在 F# 中将对象强制转换为泛型类型列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2140079/
我是一名优秀的程序员,十分优秀!