当前位置:  开发笔记 > 编程语言 > 正文

如何确定类型是否实现特定的通用接口类型

如何解决《如何确定类型是否实现特定的通用接口类型》经验,为你挑选了5个好方法。

假设以下类型定义:

public interface IFoo : IBar {}
public class Foo : IFoo {}

当只有受损的类型可用时,如何确定类型是否Foo实现了通用接口IBar



1> sduplooy..:

通过使用TcKs的答案,它也可以使用以下LINQ查询完成:

bool isBar = foo.GetType().GetInterfaces().Any(x =>
  x.IsGenericType &&
  x.GetGenericTypeDefinition() == typeof(IBar<>));


我建议你把它作为一个扩展方法来http://bit.ly/ccza8B - 这将很好地清理它!
我说这应该在.net中实现得更好......作为核心......就像member.Implements(IBar)或CustomType.Implements(IBar),甚至更好,使用关键字"is".. ..我正在探索c#,我现在对.net感到有点失望......
较小的补充:如果IBar具有多个泛型类型,则需要像这样表示:`typeof(IBar <,,,>)`,逗号的作用类似于占位符

2> Jon Skeet..:

你必须通过继承树上去,找到树中的每个类的所有接口,并比较typeof(IBar<>)与调用的结果Type.GetGenericTypeDefinition ,如果该接口是通用的.当然,这有点痛苦.

有关更多信息和代码,请参阅此答案和这些答案.


T未知,无法转换为特定类型.

3> TcKs..:
public interface IFoo : IBar {}
public class Foo : IFoo {}

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;
    }
}


由于typeof(Foo)返回一个System.Type对象(描述Foo),因此GetType()调用将始终返回System.Type的类型.你应该改为typeof(Foo).GetInterfaces()

4> 小智..:

作为辅助方法的扩展

public static bool Implements(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();
result = testObject.GetType().Implements(typeof(IDictionary)); // true!


这不适用于提问者不知道泛型类型参数的要求.从您的示例testObject.GetType().Implements(typeof(IDictionary <,>)); 将返回false.
"IsAssignableFrom"正是我所寻找的 - 谢谢

5> Ben Foster..:

我使用的是@GenericProgrammers扩展方法的简化版本:

public static bool Implements(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())
        throw new InvalidCastException();


按照原始问题对通用接口的要求,它仍然不起作用。
推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有