首页 > 后端开发 > C++ > 如何在 C# 中使用变量的类型作为泛型参数?

如何在 C# 中使用变量的类型作为泛型参数?

Linda Hamilton
发布: 2025-01-17 20:47:10
原创
804 人浏览过

How Can I Use a Variable's Type as a Generic Parameter in C#?

在C#中使用变量类型作为泛型参数

C#中的泛型提供了编译时类型安全,要求类型在编译时已知。

假设你定义了一个泛型方法:

<code class="language-csharp">bool DoesEntityExist<T>(Guid guid, ITransaction transaction) where T : IGloballyIdentifiable;</code>
登录后复制

当你尝试动态使用它时,会遇到编译错误:

<code class="language-csharp">Type t = entity.GetType();
DoesEntityExist<t>(entityGuid, transaction);</code>
登录后复制

这是因为t只在运行时已知,这违反了泛型的编译时类型安全原则。

你可以使用反射来处理动态类型的泛型方法:

<code class="language-csharp">MethodInfo method = GetType().GetMethod("DoesEntityExist")
                             .MakeGenericMethod(new Type[] { t });
method.Invoke(this, new object[] { entityGuid, transaction });</code>
登录后复制

然而,这种方法由于其复杂性和性能开销而并非理想之选。

更好的解决方案是将你的调用方法设为泛型,并将类型参数作为类型参数传递:

<code class="language-csharp">void MyMethod<T>(T entity, Guid guid, ITransaction transaction)
{
    DoesEntityExist<T>(guid, transaction);
}</code>
登录后复制

这样,你就可以在调用MyMethod时动态指定类型,在保持类型安全的同时避免使用反射。

以上是如何在 C# 中使用变量的类型作为泛型参数?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板