gpt4 book ai didi

c# - RuntimeTypeHandle 和 Type 有什么区别?

转载 作者:可可西里 更新时间:2023-11-01 03:09:43 26 4
gpt4 key购买 nike

为什么我会在我的代码中使用一个而不是另一个?

最佳答案

Caution: This answer appears to be out of date. It was posted before .NET 4 became available, which apparently introduced some optimizations regarding Type and thus rendered the information in this answer obsolete. See this more recent answer for details.

根据 this blog post (from 2006) by Vance Morrison , RuntimeTypeHandle 是一个值类型(struct),它包装了一个非托管指针,所以 Type.GetTypeHandle(obj).Equals(anotherHandle) 更快用于比 obj.GetType().Equals(anotherType) 严格的“完全相同类型”比较——后者创建 System.Type 实例,显然,更重。

但是,它也不太明显,并且绝对属于“微优化”类别,因此如果您想知道什么时候需要一个而不是另一个,您应该只使用 System.Type。

关于c# - RuntimeTypeHandle 和 Type 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40352/

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