IQueue
如果T是struct而另一个是T是一个类,我想通过一个实现以有效的方式实现我的泛型接口.
interface IQueue{ ... } class StructQueue : IQueue where T : struct { ... } class RefQueue : IQueue where T : class { ... }
我希望有一个基于T类的工厂方法返回一个或另一个的实例:
static IQueueCreateQueue () { if (typeof(T).IsValueType) { return new StructQueue (); } return new RefQueue (); }
当然,编译器指示T应该分别是非可空/可空类型参数.
有没有办法将T转换为struct类(并进入类类)以使该方法编译?是否可以使用C#进行这种运行时调度?
您可以使用Reflection来执行此操作:
static IQueueCreateQueue () { if (typeof(T).IsValueType) { return (IQueue )Activator .CreateInstance(typeof(StructQueue<>).MakeGenericType(typeof(T))); } return (IQueue )Activator .CreateInstance(typeof(RefQueue<>).MakeGenericType(typeof(T))); }
此代码使用该Activator.CreateInstance
方法在运行时创建队列.此方法接受您要创建的对象的类型.
要创建Type
表示泛型类的代码,此代码使用该MakeGenericType
方法Type
从打开的泛型类型创建封闭的通用对象StructQueue<>
.