【发布时间】:2010-10-04 22:24:09
【问题描述】:
假设以下类型定义:
public interface IFoo<T> : IBar<T> {}
public class Foo<T> : IFoo<T> {}
当只有 mangled 类型可用时,如何确定类型 Foo 是否实现了泛型接口 IBar<T>?
【问题讨论】:
标签: c# .net reflection
假设以下类型定义:
public interface IFoo<T> : IBar<T> {}
public class Foo<T> : IFoo<T> {}
当只有 mangled 类型可用时,如何确定类型 Foo 是否实现了泛型接口 IBar<T>?
【问题讨论】:
标签: c# .net reflection
您必须检查通用接口的构造类型。
你必须这样做:
foo is IBar<String>
因为IBar<String> 代表构造类型。您必须这样做的原因是,如果 T 在您的检查中未定义,编译器将不知道您的意思是 IBar<Int32> 还是 IBar<SomethingElse>。
【讨论】:
你必须向上遍历继承树并找到树中每个类的所有接口,并将typeof(IBar<>)与调用Type.GetGenericTypeDefinition的结果进行比较如果接口是通用的。当然,这有点痛苦。
有关更多信息和代码,请参阅 this answer 和 these ones。
【讨论】:
public interface IFoo<T> : IBar<T> {}
public class Foo : IFoo<Foo> {}
var implementedInterfaces = typeof( Foo ).GetInterfaces();
foreach( var interfaceType in implementedInterfaces ) {
if ( false == interfaceType.IsGeneric ) { continue; }
var genericType = interfaceType.GetGenericTypeDefinition();
if ( genericType == typeof( IFoo<> ) ) {
// do something !
break;
}
}
【讨论】:
首先public class Foo : IFoo<T> {} 无法编译,因为您需要指定一个类而不是 T,但假设您执行public class Foo : IFoo<SomeClass> {} 之类的操作
如果你这样做了
Foo f = new Foo();
IBar<SomeClass> b = f as IBar<SomeClass>;
if(b != null) //derives from IBar<>
Blabla();
【讨论】:
通过使用 TcKs 的答案,也可以使用以下 LINQ 查询来完成:
bool isBar = foo.GetType().GetInterfaces().Any(x =>
x.IsGenericType &&
x.GetGenericTypeDefinition() == typeof(IBar<>));
【讨论】:
typeof(IBar<,,,>) 用逗号充当占位符
作为辅助方法扩展
public static bool Implements<I>(this Type type, I @interface) where I : class
{
if(((@interface as Type)==null) || !(@interface as Type).IsInterface)
throw new ArgumentException("Only interfaces can be 'implemented'.");
return (@interface as Type).IsAssignableFrom(type);
}
示例用法:
var testObject = new Dictionary<int, object>();
result = testObject.GetType().Implements(typeof(IDictionary<int, object>)); // true!
【讨论】:
我正在使用@GenericProgrammers 扩展方法的稍微简单的版本:
public static bool Implements<TInterface>(this Type type) where TInterface : class {
var interfaceType = typeof(TInterface);
if (!interfaceType.IsInterface)
throw new InvalidOperationException("Only interfaces can be implemented.");
return (interfaceType.IsAssignableFrom(type));
}
用法:
if (!featureType.Implements<IFeature>())
throw new InvalidCastException();
【讨论】:
以下应该没有错:
bool implementsGeneric = (anObject.Implements("IBar`1") != null);
如果您想为您的 IBar 查询提供特定的泛型类型参数,您可以捕获 AmbiguousMatchException。
【讨论】:
bool implementsGeneric = (anObject.Implements(typeof(IBar<>).Name) != null);
要完全处理类型系统,我认为您需要处理递归,例如IList<T>:ICollection<T>:IEnumerable<T>,没有它你不会知道IList<int>最终实现了IEnumerable<>。
/// <summary>Determines whether a type, like IList<int>, implements an open generic interface, like
/// IEnumerable<>. Note that this only checks against *interfaces*.</summary>
/// <param name="candidateType">The type to check.</param>
/// <param name="openGenericInterfaceType">The open generic type which it may impelement</param>
/// <returns>Whether the candidate type implements the open interface.</returns>
public static bool ImplementsOpenGenericInterface(this Type candidateType, Type openGenericInterfaceType)
{
Contract.Requires(candidateType != null);
Contract.Requires(openGenericInterfaceType != null);
return
candidateType.Equals(openGenericInterfaceType) ||
(candidateType.IsGenericType && candidateType.GetGenericTypeDefinition().Equals(openGenericInterfaceType)) ||
candidateType.GetInterfaces().Any(i => i.IsGenericType && i.ImplementsOpenGenericInterface(openGenericInterfaceType));
}
【讨论】:
如果您想要一个支持泛型基类型和接口的扩展方法,我扩展了 sduplooy 的答案:
public static bool InheritsFrom(this Type t1, Type t2)
{
if (null == t1 || null == t2)
return false;
if (null != t1.BaseType &&
t1.BaseType.IsGenericType &&
t1.BaseType.GetGenericTypeDefinition() == t2)
{
return true;
}
if (InheritsFrom(t1.BaseType, t2))
return true;
return
(t2.IsAssignableFrom(t1) && t1 != t2)
||
t1.GetInterfaces().Any(x =>
x.IsGenericType &&
x.GetGenericTypeDefinition() == t2);
}
【讨论】:
检查类型是否继承或实现泛型类型的方法:
public static bool IsTheGenericType(this Type candidateType, Type genericType)
{
return
candidateType != null && genericType != null &&
(candidateType.IsGenericType && candidateType.GetGenericTypeDefinition() == genericType ||
candidateType.GetInterfaces().Any(i => i.IsGenericType && i.GetGenericTypeDefinition() == genericType) ||
candidateType.BaseType != null && candidateType.BaseType.IsTheGenericType(genericType));
}
【讨论】:
试试下面的扩展。
public static bool Implements(this Type @this, Type @interface)
{
if (@this == null || @interface == null) return false;
return @interface.GenericTypeArguments.Length>0
? @interface.IsAssignableFrom(@this)
: @this.GetInterfaces().Any(c => c.Name == @interface.Name);
}
测试它。创建
public interface IFoo { }
public interface IFoo<T> : IFoo { }
public interface IFoo<T, M> : IFoo<T> { }
public class Foo : IFoo { }
public class Foo<T> : IFoo { }
public class Foo<T, M> : IFoo<T> { }
public class FooInt : IFoo<int> { }
public class FooStringInt : IFoo<string, int> { }
public class Foo2 : Foo { }
以及测试方法
public void Test()
{
Console.WriteLine(typeof(Foo).Implements(typeof(IFoo)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<>)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<int>)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<string>)));
Console.WriteLine(typeof(FooInt).Implements(typeof(IFoo<,>)));
Console.WriteLine(typeof(FooStringInt).Implements(typeof(IFoo<,>)));
Console.WriteLine(typeof(FooStringInt).Implements(typeof(IFoo<string,int>)));
Console.WriteLine(typeof(Foo<int,string>).Implements(typeof(IFoo<string>)));
}
【讨论】: